Blog
arrow
2012-05-29 22:17
Converting TIF images from RGB to CMYK using Ubuntu

Gimp doesn't support saving images with CMYK color model. If you want to save TIF file in CMYK format, you can use convert utility from imagemagick package:

convert 1.tif -colorspace CMYK 1-cmyk.tif

Up