Last active
February 17, 2016 13:26
-
-
Save mherb/8296666f8ec06b9c9dd5 to your computer and use it in GitHub Desktop.
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
# # # # # # # # # # # # # | |
# 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