views:

511

answers:

1

Each month I get new CMYK and RGB images that shall be used on the web.

I had a script using a patched up ImageMagick doing this, but it got deleted. So I need to do it again, but it was hard last time.

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

+1  A: 

Like so:

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