Created
December 7, 2022 19:56
-
-
Save singularitti/12dcaa0d8dc204ea703888d285976cdc to your computer and use it in GitHub Desktop.
Compress a PDF file #PDF #Shell
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
| # Usage: compresspdf [input file] [output file] [screen*|ebook|printer|prepress] | |
| compresspdf() { | |
| gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH -dPDFSETTINGS=/${3:-"screen"} -dCompatibilityLevel=1.4 -sOutputFile="$2" "$1" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment