Hi,
When converting attached pdf to any image format (png, jpeg, tiff) the text in image is getting mangled. I am using aspose.pdf version 9 and code is as below.
var pdfDocument = new Document(pdfFilePath);
var pngDevice = new PngDevice();
pngDevice.Process(pdfDocument.Pages[pageNo], ourputFilePath);
Thanks,