How do I convert rgb to cmyk on IM?

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
jedson
Posts: 1
Joined: 2012-08-12T12:19:48-07:00
Authentication code: 67789

How do I convert rgb to cmyk on IM?

Post by jedson »

Here is the last thing I tried: convert 1_boat.tiff -profile sRGB_v4_ICC_preference.icc -profile ISOcoated_v2_300_eci.icc boat_cmyk.tiff . It produced an inverted color scheme. Any help would be appreciated.

jedson
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: How do I convert rgb to cmyk on IM?

Post by fmw42 »

Does your tiff file contain a cmyk profile? Is your tiff file really in cmyk colorspace? What version of IM? What platform? Can you post a link to your tiff image? How are you viewing it?

Have you tried simply

convert image_cmyk.tiff -colorspace sRGB image image_srgb.tiff
Post Reply