public static void Test()
{
var filePath = @"input.psd";
var newContentPath1 = @"input.png";
var pngOutputPath = @"pngoutput.png";
var psdOutputPath = @"psdoutput.psd";
using (PsdImage image = (PsdImage)Image.Load(filePath))
{
image.Save(pngOutputPath, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}
}
why output image is empty? I use last dll
https://www.dropbox.com/s/kzlldynapdudyey/copy.zip?dl=0 this is file example