PDF to JPG generates mostly blue page

I used the latest Aspose.Pdf 17.10 (and same issue with 17.9) to convert my PDF to JPG images but the 16th page generates as a blue page with some text at the bottom. The other pages look fine. I used Aspose.Pdf to extract just the 16th page and the new single-page PDF has the same problem. I have tried various resolutions and quality but it made no difference. I also tried converting to PNG and BMP but same problem.
I have attached the problem PDF called page16.pdf and what the converted jpg looks like, uploaded as page16.jpg.

Here is my code snippet to reproduce:
string path = @“c:\temp\pdfs”;
string pdfpath = @“c:\temp\pdfs\page16.pdf”;
Document pdfDocument = new Document(pdfpath);
for (int i = 1; i <= pdfDocument.Pages.Count; i++)
{
string nextimagefilename = string.Format("{0}\page{1}.jpg", path, i);
if (File.Exists(nextimagefilename))
{
File.Delete(nextimagefilename);
}
Resolution resolution = new Resolution(96);
JpegDevice jpegDevice = new JpegDevice(resolution, 80);
jpegDevice.Process(pdfDocument.Pages[i], nextimagefilename);
}
// Note: I also tried it with a MemoryStream but same result.

page16.pdf (1.4 MB)
page16.jpg (20.5 KB)

@JBrodie

Thanks for contacting support.

We have tested the scenario and managed to replicate the same issue in our environment, which you have mentioned. Hence, for the sake of correction, we have logged it as PDFNET-43524 in our issue tracking system. We will further investigate the issue and keep you posted with the status of its rectification. Please be patient and spare us little time.

We are sorry for the inconvenience.

What is the status of the fix for generated jpegs looking like blue pages? We have told our customers we are waiting for a fixed Aspose.PDF but they are getting anxious. Is there an ETA on when this will be fixed? It is not usable when it generates all blue images when converting the PDF to Jpeg or any other image format. Thank you.

@JBrodie

Thanks for your inquiry.

I am afraid that earlier logged issue has not been yet resolved, because of large number of pending issues, which were reported previously than your issue. However, product team will surely plan to investigate and provide a fix, as per their development schedule. As soon as we receive some certain updates regarding resolution progress, we will let you know. Please spare us little time.

We are sorry for the inconvenience.

The issues you have found earlier (filed as PDFNET-43524) have been fixed in Aspose.PDF for .NET 19.6.