Created
June 20, 2016 19:54
-
-
Save scemama/e2683117a877b70a49dc83a6f6c9a255 to your computer and use it in GitHub Desktop.
Reduce size of a scanned pdf file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ -z $0 ]] | |
then | |
echo $0 "<input.pdf> <output.pdf>" | |
exit -1 | |
fi | |
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=$2 $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment