Hello All,
Can you please help me to convert .HTML page to PDF file using C#.net
And i am using below code for using Aspose.Pdf;
// Load HTML file
Aspose.Pdf.Document doc = new Aspose.Pdf.Document(“C://document.html”, htmloptions);
// Convert HTML file to PDF
doc.Save(“C:/document.pdf”);
The same Image displaying in HTML file.
But Image is missing in PDF file and Aspose.Pdf text is displaying in red color and image is showing in HTML file.
Please suggest how to fix this issue.