Last active
April 8, 2025 20:28
-
-
Save rgcoe/822fa6aaa09f091bb07e9b8d2730af94 to your computer and use it in GitHub Desktop.
compresspdf
This file contains 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
# Args: in_file out_file (screen, ebook, printer) | |
compresspdf() { | |
gs -sDEVICE=pdfwrite \ | |
-dDetectDuplicateImages=true \ | |
-dConvertCMYKImagesToRGB=true \ | |
-dCompressFonts=true \ | |
-dNOPAUSE \ | |
-dQUIET \ | |
-dBATCH \ | |
-dPDFSETTINGS=/${3:-"prepress"} \ | |
-dCompatibilityLevel=1.4 \ | |
-sOutputFile=$2 $1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment