How do I convert this CMYK image to 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
OneFunk
Posts: 4
Joined: 2016-01-29T05:59:39-07:00
Authentication code: 1151

How do I convert this CMYK image to RGB

Post by OneFunk »

How can I convert this CMYK image so that it displays "OK" in Chrome?

Image

In chrome it looks far too bright.. It should look more like this...

Image


I'm trying to learn as much about colour profiles as i can. I think the original image has "ISO coated v2 (ECI)" profile, and I need to convert it to sRGB.

But everytime I run a convert, the resulting RGB image looks like the one above with fluorescent green background, which is wrong.

I'm doing this on the command line, but eventually it will be done in php using the imagemagick library.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How do I convert this CMYK image to RGB

Post by snibgo »

Yes, it has a profile, so you should convert it to sRGB with "-profile":

Code: Select all

convert cmyk2.jpg -profile sRGB.icc s.jpg
snibgo's IM pages: im.snibgo.com
OneFunk
Posts: 4
Joined: 2016-01-29T05:59:39-07:00
Authentication code: 1151

Re: How do I convert this CMYK image to RGB

Post by OneFunk »

Thank you very much. I don't know why that seemed so hard :)
Post Reply