CMYK to sRGB gives washed out image #687
-
I have a TIF file in CMYK (CoatedFOGRA39) and wish to convert that to sRGB (IEC61966-2). When I do this using the commandline: However, when I try to replicate this inside Magick.NET, it comes out washed out.
I have been toying with the settings for over 2 hours now and it's driving me nuts :P Who can point out what I'm missing? Attached is the original TIF and the output of both ImageMagick and Magick.NET with the code above. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
It looks like you are using an older version of Magick.NET? I cannot reproduce your issue with the latest version. You might also want to change your code to use |
Beta Was this translation helpful? Give feedback.
-
I've tried to use the EDIT: Additionally: I'm using Windows. |
Beta Was this translation helpful? Give feedback.
-
I was using the latest development build and I think that it still uses the same version of ImageMagick as when I published the new release. Will check it tonight. |
Beta Was this translation helpful? Give feedback.
-
I am unable to reproduce your issue. I tried the following:
using var magic = new MagickImage("ZDCF0757.tif");
magic.Format = MagickFormat.Png;
magic.TransformColorSpace(ColorProfile.CoatedFOGRA39, ColorProfile.SRGB);
magic.Strip();
magic.Write("test.png"); And I get the following output: |
Beta Was this translation helpful? Give feedback.
-
Very peculiar. I had the issue constantly yesterday, as is evident by the output in the ZIP. But now, it just works... Thanks for checking and confirming! |
Beta Was this translation helpful? Give feedback.
I am unable to reproduce your issue. I tried the following:
And I get the following output: