Re: How to simulate CMYK decoded as RGB?
Posted: 2017-07-22T11:28:46-07:00
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