Aspose.pdf conversion of pdf to png results in infinite loop

Hi,
sometimes the conversion of pdf file to png results in an infinite loop and cpu is rising high.
Naturally this is a problem because work is done serverside. Therefore application server must be restarted by our customers.
Is there any solution to avoid this situation?
Is there any possibility to limit the process time analogous to BarCodeReade.setTimeout?
May be is it possible to identify those problematic pdf documents before starting conversion?

Example file for test:
ConvertMe.pdf (7.9 MB)
Source Code:

public static void convertPDFtoImage(Document pdfDocument, String targetImageFileName)
throws IOException
{
Resolution resolution = new Resolution(72);
PngDevice pngDevice = new PngDevice(resolution);
Page page = pdfDocument.getPages().get_Item(1);
java.io.OutputStream imageStream = new java.io.FileOutputStream(targetImageFileName);
pngDevice.process(page, imageStream);
imageStream.close();
}

Kind regards
Matthias

@curmas

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): PDFNET-56335

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.