Page 1 of 1

How do I convert this CMYK image to RGB

Posted: 2016-01-29T06:30:30-07:00
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.

Re: How do I convert this CMYK image to RGB

Posted: 2016-01-29T06:46:25-07:00
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

Re: How do I convert this CMYK image to RGB

Posted: 2016-01-29T07:02:23-07:00
by OneFunk
Thank you very much. I don't know why that seemed so hard :)