Imagemagick converted image is blurry
imagemagick, imagemagick-convert
Solution
This is probably an aliasing issue. Try `-adaptive-resize` instead of `-resize`, as explained in the docs. You might also try different resolution and density settings depending on your input.
Problem
I m using `ImageMagick` command line utility to convert images. I have a large size say (800x300 px) transparent tif image and I want it to convert it to cmyk tif, but the resulting image is blurry. how can I fix this? What I have so far is ``` convert.exe sourcefilergb.tif -colorspace cmyk -depth 8 -resize 122x44 -quality 100 -density 300 -virtual-pixel transparent -background none -gravity center -extent 122x44 -compress none destinationcmyk.tif ``` How to rectify my above code so that I could get desired result? Thanks