The attached PDF is nog correctly rendered to an image.
I tested with Aspose.Pdf 9.4.0.0
Code I used:
var resolution = new Resolution(150);
var pngDevice = new PngDevice(resolution);
var doc = new Document(source);
var pageCount = doc.Pages.Count;
for (var i = 0; i < pageCount; i++)
{
using (var imageStream = new FileStream(outputPath + “_” + i + “.png”, FileMode.Create))
{
pngDevice.Process(doc.Pages[i + 1], imageStream);
imageStream.Close();
}
}
Can you please take a look?
Thanks, Corne