Hello. We have stumbled upon a situation where after opening a .psd file, saving it, and trying to open it in latest CreativeCloud (using latest PSD 27 version), the file fails to open with a generic error
“the file is not compatible with this version of Photoshop”
File that reproduces issue:
LogoOutside.7z (104.0 KB)
From what i can tell, the SmartObject png file in it is causing this issue.
Code that reproduces issue:
var psdFilePath = “LogoOutside.psd”;
var psdSavePath = “LogoOutsideResult.psd”;
var psdImage = (PsdImage)Aspose.PSD.Image.Load(psdFilePath);
var imageOptions = new PsdOptions(psdImage);
psdImage.Save(psdSavePath , imageOptions);
psdImage.Dispose();
We tried hiding the layer containing the object and it still reproduces. Out workaround is to remove
the logo entirely, but need to know if it’s a known issue or not.
We tested on Aspose.PSD [25.5.0] as well as [25.10.0], both reproduce it.
Any idea/help? Thank you