@kkevin2
Sorry for the delay. We’ve created issues for your file. Aspose.PSD can make pixel-perfert rendering only in read-only mode. The are working on improvement warp and effects rendering.
We will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): PSDNET-2274,PSDPYTHON-121
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.
Please check this temporary workaround for rendering:
psdLoadOptions = PsdLoadOptions()
psdLoadOptions.read_only_mode = True
with Image.load(sourceFile, psdLoadOptions) as image:
pngSaveOptions = PngOptions()
pngSaveOptions.color_type = PngColorType.TRUECOLOR_WITH_ALPHA
image.save(outputFile, pngSaveOptions)