Skip to content

Instantly share code, notes, and snippets.

@tahirm
Created April 17, 2014 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tahirm/11012211 to your computer and use it in GitHub Desktop.
Save tahirm/11012211 to your computer and use it in GitHub Desktop.
Compress PDF files in linux. #pdf #linux #compress From http://askubuntu.com/questions/113544/how-to-reduce-pdf-filesize
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
#Leave out the '-dPDFSETTINGS=/screen' setting for better quality, but slightly larger pdfs.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment