Resize pdf and retain quality
Posted: 2014-10-19T20:52:51-07:00
I need to compress a bunch of pdf files (size between 10MB to 50MB) to smaller size, say half of the original, but I need to remain the text quality.
I tried with the code below:
It does compress to smaller size, but the fonts are very blur.
If i increase the density, the output size become bigger than original size.
I have also tried with -resize and -resample, but the output size always bigger than the original, and yet the texts are blur.
What did I miss in the command?
I tried with the code below:
Code: Select all
convert -density 50 -compress zip input.pdf output.pdf
If i increase the density, the output size become bigger than original size.
I have also tried with -resize and -resample, but the output size always bigger than the original, and yet the texts are blur.
What did I miss in the command?