Added pdf compression script

This commit is contained in:
Georgy Litvinov 2021-01-12 15:38:14 +01:00
parent 368b12928a
commit cd81717f0b

12
pdfcompress.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
name=$1
gs \
-dNOPAUSE \
-dBATCH \
-sDEVICE=pdfwrite \
-dQUIET \
-dCompatibilityLevel=1.4 \
-dAutoRotatePages=/None \
-dPDFSETTINGS=/ebook \
-sOutputFile="$name-ebook.pdf" \
"$name"