Skip to content

Instantly share code, notes, and snippets.

@scemama
Created June 20, 2016 19:54
Show Gist options
  • Save scemama/e2683117a877b70a49dc83a6f6c9a255 to your computer and use it in GitHub Desktop.
Save scemama/e2683117a877b70a49dc83a6f6c9a255 to your computer and use it in GitHub Desktop.
Reduce size of a scanned pdf file
#!/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