I have been testing the HTML to PDF conversion but without much success. My use cases have been very simple and yet have not worked well and all HTML files load into Chrome and IE without issues yet still fail to load linked images and even embedded images included in CSS.
This is the only code I used to load the html and save as pdf:
Document htdoc = new Document(myDir + "asposetest2.html");
htdoc.Save(myDir + "aspostest2.pdf");
Attached is the html and resultant files that I tried including a docx which also failed. I believe this is a well used portion of the tool, what am I missing?
Ed