Last active
February 16, 2023 12:36
-
-
Save salaros/91aefe049ced33166c6776f0bc571ed7 to your computer and use it in GitHub Desktop.
Compress and combine raster PDF without making them blurry
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
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