Preferred CMYK to RGB library and / or method

Every month I get new CMYK and RGB images to be used online.

I had a script using the patched ImageMagick, but it was removed. So I need to do it again, but it was tough last time.

How do you convert CMYK image files to RGB easily and quickly?

+1


source to share


3 answers


Same:



convert CMYK.tiff -profile "RGB.icc" RGB.tiff

      

+1


source


convert cmyk_image.jpg -colorspace rgb rgb_image.jpg



+1


source


Gb1981's answer is mostly correct (+1), but ...

To make it workable I found that I need to add -type truecolor

to the command line:

convert cmyk.jpg -colorspace rgb -type truecolor rgb.jpg

      

0


source







All Articles