我正在使用ImageMagick
命令行实用程序来转换图像。我有一个大尺寸的说(800x300 px)透明 tif 图像,我希望它将其转换为 cmyk tif,但生成的图像是模糊的。我怎样才能解决这个问题?
到目前为止我所拥有的是
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
如何纠正我上面的代码,以便我能得到想要的结果?
谢谢