Skip to content

Instantly share code, notes, and snippets.

@mherb
Last active February 17, 2016 13:26
Show Gist options
  • Save mherb/8296666f8ec06b9c9dd5 to your computer and use it in GitHub Desktop.
Save mherb/8296666f8ec06b9c9dd5 to your computer and use it in GitHub Desktop.
# # # # # # # # # # # # #
# PDF Tools
# # # # # # # # # # # # #
# Uses Imagemagick convert tool
# Reduce PDF file size by compressing images to 200dpi, jpeg quality 80
convert -density 200x200 -quality 80 -compress jpeg input.pdf output.pdf
# Apply contrast normalization to scanned PDF files
# darkest 3% of pixels will be black, brightest 2% white
convert -contrast-stretch 3%x2% input.pdf output.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment