Dear support team,
I am converted html code to pdf but its not given desire out put. Please compare attached html.zip with generated output in pdf(ouptut1.pdf). Over their compare following points:
- Hindi Text not getting exactly what in Html
- Image is not well readable format.
- Table truncation right most colums are truncated in pdf.
I used following code for Html to pdf conversion
Code :
public static void convertHtmlToDoc()
{
Document doc;
try
{
doc = new Document("F:/nitin/modules/Aspose/testing/data/html/Aspose_DocToHTML.html");
doc.save("F:\\nitin\\modules\\Aspose\\testing\\data\\ouptut1.pdf");
}
catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}