Page 2 of 2

Re: How to simulate CMYK decoded as RGB?

Posted: 2017-07-22T11:28:46-07:00
by fmw42
Try these. You can get different results by varying one or both profiles to other CMYK and RGB profiles.

Code: Select all

convert Lenna.png -colorspace CMYK -profile /Users/fred/images/profiles/USWebCoatedSwop.icc -profile /Users/fred/images/profiles/sRGB.icc -strip result1.png

Code: Select all

convert Lenna.png -colorspace CMYK -profile /Users/fred/images/profiles/GenericCMYKProfile.icc -profile /Users/fred/images/profiles/sRGB.icc -strip result2.png

Code: Select all

convert Lenna.png -colorspace CMYK -profile /Users/fred/images/profiles/USWebCoatedSwop.icc -profile /Users/fred/images/profiles/AdobeRGB1998.icc -strip result3.png

Code: Select all

convert Lenna.png -colorspace CMYK -profile /Users/fred/images/profiles/WebCoatedFOGRA28.icc -profile /Users/fred/images/profiles/AdobeRGB1998.icc -strip result4.png

Re: How to simulate CMYK decoded as RGB?

Posted: 2017-07-22T16:20:19-07:00
by arbingordon
Perfect, this puts me in the right direction, thank you!