Page 1 of 1

Contrast changing while converting eps (cmyk) to tif (RGB)

Posted: 2014-11-19T01:59:50-07:00
by farahim
Hi Experts,

I need to convert CMYK eps to RGB tif. Imagemagick is converting the file correctly only the contrast of the tif file is getting changed.
I am using below syntax for conversion:
convert -depth 8 -density 300x -antialias -colorspace RGB color_image_eps.eps -compress lzw -level 0%,100%,1.0 -quality 100 color_image_tif.tif

Imagemagick version: ImageMagick-6.8.8-Q16

Regards,
Farahim Khan

Re: Contrast changing while converting eps (cmyk) to tif (RGB)

Posted: 2014-11-19T02:09:47-07:00
by snibgo
Try "-colorspace sRGB" instead of "-colorspace RGB".