Hello Helen,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for considering Aspose.
PdfContentEditor class has a property named Resolution which can be used to set the resolution of the resultant Image.But, higher the resolution value, the slower is conversion speed. Please try using the value as 300, as I’ve tested it with that value and resultant Image is quite much better. The output file is in attachment, please take a look.
In case of any further query, feel free to contact.
Hello Helen,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Please try using the following code snippet. I've tested it using Aspose.Pdf.Kit 3.4.0.0
[VB.Net]
'constructor of the PdfConverter object. Dim converter As PdfConverter = New PdfConverter() ' Bind a Pdf file for converting converter.BindPdf("D:\pdfTest\b4t5r4z0jfvmb24532kyaoiyTest1.pdf") ' call the method to convert PDF to image converter.DoConvert() ' set the resoluiton of the resultant image converter.Resolution = 300 ' save the TIFF image converter.SaveAsTIFF("D:\pdfTest\b4t5r4z0jfvmb24532kyaoiyTest1_test.tiff")
In case of any further query, please feel free to contact.
Thank you for help! The printing quality is better now. But it take longer time. Do you have any "loading indicator" for slow loading file that I can add in my program?