Skip to content

Instantly share code, notes, and snippets.

@rgcoe
Last active April 8, 2025 20:28
Show Gist options
  • Save rgcoe/822fa6aaa09f091bb07e9b8d2730af94 to your computer and use it in GitHub Desktop.
Save rgcoe/822fa6aaa09f091bb07e9b8d2730af94 to your computer and use it in GitHub Desktop.
compresspdf
# 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