Skip to content

Instantly share code, notes, and snippets.

@phyrog
Last active December 8, 2017 15:31
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 phyrog/2c3ab30b8d72026798975c3acd64c335 to your computer and use it in GitHub Desktop.
Save phyrog/2c3ab30b8d72026798975c3acd64c335 to your computer and use it in GitHub Desktop.
Decreases the pdf's size by decreasing the quality
#!/bin/sh
fout=${1%.*}
out="$fout.small.pdf"
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=$out $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment