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
filter:blur
, the image will get sharper. – Turnout