1
I have PDF files, tonnes (~1000) of them for a government report, varying from 600kb to 500MB.
Problem is that the portal only allows upload of files up to 2MB.
I have Windows (which I find fairly useless), Linux (where I managed to compress a 150MB file to 10MB using techniques described below), and Mac at my disposal.
In Linux, I used GhostScript and ImageMagick
ps2pdf LARGE.pdf SMALL.pdf
Also, pdftops and converting back, as suggested by some sites.
convert -density 200 -compress jpeg -quality 20 test.pdf test2.pdf
with lower density (as low as 100x100,
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=out.pdf in.pdf
Doing it intermixed helped me with few files, for example, compressing a 150MB file down to 10MB with a huge loss of clarity.
That's when I saw this file (link) which has nearly 150pages, compressed to 1.53MB, without much loss of quality. How do I achieve this? Any OS, but preferably Windows/Linux!
Would help to know what the content of your files is… just text? Some images? Mostly images? Is the text readable? Do you care about image quality? – slhck – 2019-04-09T15:21:19.990
It's mostly images. But some files may have text as well, converted from word – Jesse P Francis – 2019-04-09T15:44:07.783