Quantcast
Viewing all articles
Browse latest Browse all 3693

New Post: Convert tiff from RGB to CMYK

When converting between RGB and CMYK you should use color profiles. You can do that like this:
using (MagickImage image = new MagickImage("agent-j-peck1Before.tif"))
{
  image.AddProfile(new ColorProfile("USWebCoatedSWOP.icc"));
  image.ColorSpace = ColorSpace.CMYK;
  image.CompressionMethod = CompressionMethod.LZW;
  image.Write("agent-j-peck1After.tif");
}
You can download the profile here: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4075. That zip file contains multiple profiles. You should probably try to see which CMYK profile provides the best result for you.

Viewing all articles
Browse latest Browse all 3693

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>