dlemstra wrote:
I am getting the correct result with the following code:in Nagick.NET-6.8.6301-Q16-x86-net20 the code isusing (MagickImage image = new MagickImage("161-020-03_A091.0003894.dpx")) { image.SetAttribute("colorspace", "sRGB"); image.Write("output.jpg"); }
MagickImage magickImage = new MagickImage(DpxPath);
magickImage.Attribute("colorspace", "sRGB");
magickImage.Write("output.jpg");