I am converting the following HTML file into PDF using latest version of Aspose.Words.dll
This is a true Link: <a
href=“https://www.google.com/”><img alt=“test”
src=“C:\image0.GIF” />
This is also a Link; [click
here]
Using C# code:
var doc = new Aspose.Words.Document();
var builder = new Aspose.Words.DocumentBuilder(doc);
htmlstr = File.ReadAllText(@“C:\HTMLPage1.htm”);
builder.InsertHtml(htmlstr);
doc.Save(@“C:\Test1.pdf”);
As you will notice in attached pdf file, the icon is not working as a link, although the second line link without icon is working fine.
Your help is highly appreciated
Thank you,
Alex