tiff cmyk to jpg rgb conversion

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Snapko

tiff cmyk to jpg rgb conversion

Post by Snapko »

I find this MagickNet.dll and add to my c# project.

I looked many posts but can't understand the how to do this tiff cmyk -- jpg rgb conversion.

First I try to change my tiff colorspace

MagickNet.Image myImage = new MagickNet.Image(@"C:\one.tif");
myImage.ColorSpace = ColorSpaceType.RGBColorspace;
System.Drawing.Size size = new Size(536, 400);
myImage.Resize(size);
myImage.Write(@"C:\two.tif");

But I get a very light blue and when I try to open it in photoshop I get a invalid ICC profile error.
Post Reply