I hope you all are Fine, Today I'm experiencing a quite confusing problem.
I'm trying to make a simple application which can convert the PSD to Transparent PNG. But I'm not happy with the results I'm getting.
I'm using Magick.NET-Q16-x86.DLL (MagickImage) with C#
Below is my code snippet, Please review:
(Left Side is Expected Result and Right Side Image is the one I'm getting )
1: http://i.stack.imgur.com/PjcS5.jpg
So I don't understand whats Happening here. I'd really be thankful if i can get any answer. Thanks a lot for reviewing!
Best,
Maher
I'm trying to make a simple application which can convert the PSD to Transparent PNG. But I'm not happy with the results I'm getting.
I'm using Magick.NET-Q16-x86.DLL (MagickImage) with C#
Below is my code snippet, Please review:
ImageMagick.MagickImage image = new MagickImage(filePath+"[0]");
image.Density = new Density("300");
image.Format = MagickFormat.Png32;
image.Write(outputFolder + @"\" + Path.GetFileNameWithoutExtension(filePath) + ".png");
And Here is the Image explaining the Problem: (Left Side is Expected Result and Right Side Image is the one I'm getting )
1: http://i.stack.imgur.com/PjcS5.jpg
So I don't understand whats Happening here. I'd really be thankful if i can get any answer. Thanks a lot for reviewing!
Best,
Maher