When I try to export layer with effects, it fails to contain the effects. I’m wondering how to fix this issue. The PSD I used is as attached.effectlost.zip (11.7 KB)
using (PsdImage psdImage = (PsdImage)Aspose.PSD.Image.Load(psdpath))
{
var pngOptions = new PngOptions();
pngOptions.ColorType = PngColorType.TruecolorWithAlpha;
// Convert and save the layer to PNG file format.
if (psdImage.Layers[0].CanSave(pngOptions))
{
try
{
psdImage.Layers[0].Save(destname+"test.png", pngOptions);
}
catch (Exception ep)
{
Console.WriteLine(ep);
}
}
}