The PdfContentEditor class has a property named Resolution which can be used to set the resolution of the resultant Image. Higher the resolution value slower the conversion speed will be. Please try using the value as 300, as I’ve tested it with that value and the resultant Image is quite good. The output file is in attachment, please take a look.
In case of any further query, feel free to contact.
Please try using the following code snippet. I’ve tested it using Aspore.dot.Kit 3.4.0.0.
[VB.Net]
Dim converter As PdfConverter = New PdfConverter()
converter.BindPdf("D:\pdfTest\b4t5r4z0jfvmb24532kyaoiyTest1.pdf")
' call the method to convert PDF to image
converter.DoConvert()
' set the resolution 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?