Hello,
I'm trying to convert a PDF document to HTML and each time the HTML comes out a garbled mess . Conversion quality is very poor. As for example
1. Text 'welcome' in the input PDF get converted as 'we l c o me'
2. Original PDF have hyper-linked text which get converted into blue color without any destination address.
3.Image conversion quality is very poor.
For example I am attaching original PDF file and converted HTML. Kindly advise if anything need to be modified in conversion code? Here is my code snippet I'm trying to convert. Thank you very much for your support.
Thank
Hirak
I'm trying to convert a PDF document to HTML and each time the HTML comes out a garbled mess . Conversion quality is very poor. As for example
1. Text 'welcome' in the input PDF get converted as 'we l c o me'
2. Original PDF have hyper-linked text which get converted into blue color without any destination address.
3.Image conversion quality is very poor.
For example I am attaching original PDF file and converted HTML. Kindly advise if anything need to be modified in conversion code? Here is my code snippet I'm trying to convert. Thank you very much for your support.
string strSourcePath = @"D:\Test\HyperLinkTest.pdf";PdfContentEditor editor = new PdfContentEditor(); editor.BindPdf(strSourcePath); editor.Document.Save(@"D:\Test\HyperLinkTest.html", Aspose.Pdf.SaveFormat.Html);
Thank
Hirak