I need to compress a scanned PDF file from 1.5 MB to under 600 KB. I've tried a number of Ghostscript solutions given on other threads but they seem to compress it all the way down to just 2.2 KB and all the content is lost. Can someone provide a solution?
Asked
Active
Viewed 2.0k times
2 Answers
5
You may experiment with the convert input.pdf -resample 85% output.pdf
command example.
Reference: http://www.imagemagick.org/script/convert.php#usage
Depending on the quality of the original, the results may not be very good.

To Do
- 15,502
-1
It would be helpful to see what options you tried with Ghostscript because normally that should work better than ImageMagick.
You can also try pdfjam. To install
sudo apt-get install pdfjam
Then try variants of these commands
pdfjam --scale 0.5 your.pdf
or try the --papersize
flag. Run pdfjam --help
for a full list of options.

philshem
- 2,093
-
3Thank you for your answer, but the scale option does not reduce the PDF file size. It only adjusts the page margins. In fact, I wasn't able to find any pdfjam option that would actually reduce DPI/image quality and this file size. – Glutanimate Apr 11 '13 at 22:21
-
-
your "answer" is a comment; you should provide specific solutions using gs; just as in pdfjam. – jarnosc Dec 08 '22 at 17:28
convert scan*.jpg -colorspace gray -resample 100% "MyDocs.pdf"
– Paul Vargas Mar 08 '16 at 22:18