-
Notifications
You must be signed in to change notification settings - Fork 6
/
pipeline.sh
executable file
·61 lines (53 loc) · 1.32 KB
/
pipeline.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
set -e
set -x
################################################################################
# Common steps to create an OCRd, size-optimized PDF
#
# Usage:
# bash pipeline.sh [-l] [-o] folder_with_pdfs
#
# Arguments:
# -l or --language: language for OCR, defaults to `eng`
# -o or --optimize: level of file optimization, 0 to deactivate size optimization
# 1 should optimize without harm, 2 and 3 are compression the files harder
#
# Please report issues at https://github.com/jfilter/pdf-scripts/issues
#
# GPLv3, Copyright (c) 2020 Johannes Filter
################################################################################
lang='eng' && optimize=2
while [[ "$#" -gt 1 ]]; do
case $1 in
-l | --language)
lang="$2"
shift
;;
-o | --optimize)
optimize="$2"
shift
;;
*)
echo "Unknown parameter passed: $1"
exit 1
;;
esac
shift
done
if [[ $1 == /* ]]; then
input=$1
else
input=$PWD/$1
fi
echo '1. normalizing files'
bash utils/normalize_files.sh "$input"
echo '2. repairing pdfs'
bash repair_pdf.sh -c "$input"
echo '3. ocr PDFs'
bash ocr_pdf.sh -l "$lang" -o $optimize "$input"
if ((optimize > 0)); then
echo '4. reduce file size'
bash reduce_size_pdf.sh -l $((optimize+1)) "$input"
fi
echo '5. verify PDF'
bash verify_pdf.sh "$input"