First off, thank you.
Secondly here is my new code. I downloaded the color profile from the site above. I unzipped it into my project. But now I get an SEHException on the ColorSpace.CMYK line?
using (MagickImage image = new MagickImage())
Secondly here is my new code. I downloaded the color profile from the site above. I unzipped it into my project. But now I get an SEHException on the ColorSpace.CMYK line?
using (MagickImage image = new MagickImage())
{
image.AddProfile(new ColorProfile(Server.MapPath("~/ColorProfile/CMYK/USWebCoatedSWOP.icc")));
image.ColorSpace = ColorSpace.CMYK;
image.Read(oldFile, mySettings);
image.Write(newFile);
}