Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I'm trying to convert from pdf to tiff (with Group4 compression) using ImageMagick command line.
However when i do "convert test.pdf -compress Group4 -density 300 test.tiff" I get a very low quality tiff image
The test.pdf do have the right quality!
Is there a reason why I get such low quality?
victorzimmer wrote:That worked, thank you I taught I'd -density, but seemingly it worked now
The file size however is now larger than the maximum for this application
Make the density smaller.
OR:
You can use supersampling to get higher quality and reduce the image dimensions.
NOTE this will result in an incorrect density! -resize ignored density. So after a resize you do need to reset teh density (if that is important to you).
Alternativally resize using density using -resample
convert -density 288 test.pdf -resample 72 -compress Group4 test.tiff