Skip to content

Instantly share code, notes, and snippets.

@salaros
Last active February 16, 2023 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salaros/91aefe049ced33166c6776f0bc571ed7 to your computer and use it in GitHub Desktop.
Save salaros/91aefe049ced33166c6776f0bc571ed7 to your computer and use it in GitHub Desktop.
Compress and combine raster PDF without making them blurry
gs -sDEVICE=pdfwrite \
-dCompatibilityLevel=1.3 -dPDFSETTINGS=/screen -dAutoRotatePages=/None \
-dColorImageDownsampleType=/Bicubic -dColorImageResolution=150 \
-dGrayImageDownsampleType=/Bicubic -dGrayImageResolution=150 \
-dMonoImageDownsampleType=/Bicubic -dMonoImageResolution=150 \
-dNOPAUSE -dQUIET -dBATCH \
-sOutputFile=output.pdf input1.pdf input2.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment