When I import psd file which include korean character
the layer name is not displayed normally.
Aspose.PSD for .NET Version 19.5.0.0
[output]
Layer : ???
When I import psd file which include korean character
the layer name is not displayed normally.
Aspose.PSD for .NET Version 19.5.0.0
[output]
Layer : ???
Can you please share source files and sample code so that we may further investigate to help you out.
using (PsdImage image = (PsdImage)PsdImage.Load(@"layers.psd"))
{
foreach (Layer layer in image.Layers)
{
Console.WriteLine("Layer Name : " + layer.Name);
}
}
[output]
Layer Name : ???
Layer Name : ???
I have worked with source files and have been able to observe issue. A ticket with ID PSDNET-160 has been created in our issue tracking system for further investigate and resolve. This thread has been associated with this ticket, so that you can be automatically notified as soon as this issue is resolved.