Effects like overlay and glow are not working properly

I tried to export image with Grandient Overlay / Outer Glow, but the result were not that I expected.

  1. export to PSD
  1. export to PNG

Here is my code

 var convertedPngFileName = psdFile.getPath().replaceAll(psdFile.getName(), "") + filename + "_converted.png";

try (InputStream psdFileInputStream = new FileInputStream(psdFile)) {
            var psdLoadOptions = new PsdLoadOptions();
            psdLoadOptions.setLoadEffectsResource(true);
            var psdImage = (PsdImage) Image.load(psdFileInputStream, psdLoadOptions);

           // update some layer code...
    
          //export
            PngOptions option = new PngOptions();
            option.setColorType(PngColorType.TruecolorWithAlpha);
            psdImage.save(convertedPngFileName, option);
            psdImage.save("test.psd");
            psdImage.close();
}

@sherlock.hs
Could you please provide version of Aspose.PSD that you use and OS details. And could you please provide the additional layer manipulations that were cutted from code snippet.

I can confirm issue with difference of outer glow rendering. But I couldn’t reproduce issue with Color Changing

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PSDNET-1969

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@Dmitriy.Sorokin
I’m using Aspose.PSD 24.2 (Java) in Mac OS.

Thank you for the additional information. After the investigation I’ll text this topic back.