-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdarken-pdf-quant.sh
executable file
·94 lines (78 loc) · 3.02 KB
/
darken-pdf-quant.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env bash
set -euo pipefail
LC_ALL=C # For portability
# Get this script's folder
BASEDIR=$(dirname "$0")
# Load library with common functions
# shellcheck source=./lib.sh
. "${BASEDIR}/lib.sh"
usage() {
echo "$(basename "$0")": ERROR: "$*" >&2
echo Syntax: "$(basename "$0")" "<fin> <fout>" >&2
exit 1
}
# Check for correct number of arguments
[ $# -gt 2 ] || [ $# -lt 2 ] && usage "Wrong number of arguments"
check_depends "hexdump gs pdfinfo awk expr parallel convert"
file_readable "${1}"
# Random folder within /tmp to house temp files
WORKDIR=/tmp/$(hexdump -n 12 -v -e '/1 "%02X"' /dev/urandom)
# Make sure we clean up after ourselves.
# See https://www.shellscript.sh/trap.html
#trap cleanup 1 2 3 6
cleanup() {
echo "Cleaning up."
rm -rf "${WORKDIR}"
}
mkdir -p "$WORKDIR"
echo "Working dir: ${WORKDIR}" >&2
NUM_OF_PAGES=5 #How many pages we should split the PDF into
PAGE_FIRST=1
PAGE_LAST=$NUM_OF_PAGES
INDEX=0
# Get number of pages of PDF
TOTAL_PAGES=$(pdfinfo "${1}" | grep Pages | awk '{print $2}')
echo "Total pages: ${TOTAL_PAGES}" >&2
# Split PDF to smaller PDFs
echo "Splitting PDF..." 2>&1
COMMANDS=""
while [ "${PAGE_FIRST}" -le "${TOTAL_PAGES}" ]
do
COMMANDS=${COMMANDS}" '""${BASEDIR}/split-pdf.sh \"${1}\" ${PAGE_FIRST} ${PAGE_LAST} $WORKDIR/p${INDEX}.pdf 2>/dev/null""'"
PAGE_FIRST=$(expr "$PAGE_LAST" + 1)
PAGE_LAST=$(expr "$PAGE_FIRST" + "$NUM_OF_PAGES")
INDEX=$(expr "${INDEX}" + 1)
done
eval "parallel --bar ::: ${COMMANDS}" # See https://stackoverflow.com/questions/7454526/variable-containing-multiple-args-with-quotes-in-bash
# Convert each PDF to images,
# darken images, and combine
# darkened images to new PDFs
COMMANDS1=""
COMMANDS2=""
COMMANDS3=""
COMMANDS4=""
for file in "${WORKDIR}"/p*.pdf;
do
DIR="${WORKDIR}/$(basename "${file}" .pdf)"
mkdir -p "${DIR}"
COMMANDS1=${COMMANDS1}" '""convert -colorspace RGB -density 300 -alpha remove \"${file}\" ${DIR}/output-%05d.png""'"
COMMANDS2=${COMMANDS2}" '""mogrify -morphology erode diamond:1 ${DIR}/output*.png""'"
COMMANDS3=${COMMANDS3}" '""find ${DIR}/*png -print0 | xargs -0 -n1 -I {} pngquant --skip-if-larger --quality 0 --strip --force -o {} {}""'"
COMMANDS4=${COMMANDS4}" '""convert ${DIR}/output*.png ${WORKDIR}/dark-$(basename "${file}" .pdf).pdf""'"
done
echo "Splitting PDFs to images..." >&2
eval "nice parallel --bar ::: ${COMMANDS1}"
echo "Darkening images..." >&2
eval "nice parallel --bar ::: ${COMMANDS2}"
echo "Ultra-compressing PNG images..." >&2
eval "nice parallel --bar ::: ${COMMANDS3}"
echo "Merging images to PDFs..." >&2
eval "nice parallel --bar ::: ${COMMANDS4}"
# Combine PDFs back to one
# Possible compression levels, from worst quality to best: 'screen', 'ebook', 'printer', 'prepress'
echo "Combining final PDF..." >&2
nice `which gs` -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE="${2}" -dCompatibilityLevel=1.4 -dPDFSETTINGS=/printer -dBATCH `find ${WORKDIR} -maxdepth 1 -name "dark-*pdf" | sort -V | paste -sd ' ' -` >/dev/null 2>&1
# Clean up after ourselves
#cleanup
exit 0
echo "Done!" >&2