I am using iTextSharp to create a document in PDF format.
Some paragraphs are in XHTML format (for instance, header and footer of document).
Those XHTML contain IMG tags so when document is created, images are not rendered, of course.
How can I process those IMG tags to embed images correctly? I tried by creating a custom image tag processor but it seems it only works when converting a whole HTML to PDF.
I was looking in Internet but I have only found examples using xmlParser.Parse to process all HTML document. In my case, I need to use XMLWorkerHelper.ParseToElementList to add header and footer paragraphs.
Regards