Wrong convert PDF to png (result dark page)

I use Aspose java pdf version 25.3. I try to convert following
test.pdf (45.5 KB)

pdf document to png but result file is dark (black) page
fsrc_page_1_900.jpg (48.0 KB)

I use following code for convert page:
public boolean convertPage(int page, String outPath, int width) {
com.aspose.pdf.Page aspPage= pdfDoc.getPages().get_Item(page);
int widthOrig = (int)aspPage.getPageRect(true).getWidth();
int heightOrig = (int)aspPage.getPageRect(true).getHeight();
int height=(int)(width*heightOrig/widthOrig);
Resolution resolution = new Resolution(300);
ImageDevice device= new PngDevice(resolution);
RenderingOptions opt = new RenderingOptions();
opt.setInterpolationHighQuality(true);
device.setRenderingOptions(opt);
device.process(aspPage, outPath);
return true;
}

@aleksand

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): PDFJAVA-45038

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.

The issues you have found earlier (filed as PDFJAVA-45038) have been fixed in Aspose.PDF for Java 25.7.