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

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?".
Post Reply
farahim
Posts: 1
Joined: 2014-11-19T01:47:56-07:00
Authentication code: 6789

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

Post 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
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

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

Post by snibgo »

Try "-colorspace sRGB" instead of "-colorspace RGB".
snibgo's IM pages: im.snibgo.com
Post Reply