Why doesn't CSS and RowSpan work?
I am trying to convert Html to PDF. I found that iTextSharp does not support CSS well. In fact, I think HtmlWorker does not support it all, nor does not it seem to support RowSpan either.
Here is what I have:
Posted on StackOverflow on Oct 31, 2014 by arbaaz
Please take a look at the following screen shot:
HTML to PDF conversion
To the left, you see an HTML file rendered in a browser. To the right, you see that HTML file rendered to PDF using iText (the Java version).
There are three reasons why your application doesn't work:
- Your HTML doesn't make sense. I had to clean it up (change [blockcode]
[/blockcode] into
, introduce the correct CSS, correct the column-count for some rows,...) and make it XHTML before it rendered correctly in a browser. You can find the HTML that was used in the screen shot here: table2_css.html - You are using
HTMLWorker
instead of XML Worker, and you are right:HTMLWorker
has no support for CSS. Saying CSS doesn't work in iTextSharp is wrong. It doesn't work when you useHTMLWorker
, but that's documented: the CSS you need works in XML Worker. - You are probably using an old version of iTextSharp, and you are right: CSS and table support wasn't as good as in older versions of iTextSharp when compared to the most recent version.
Apart from iTextSharp, you also need to download XML Worker. Most of the examples on the web site are written in Java, but you should have no problem converting them to C#. The example I used to make the PDF in the screen shot (html_table_4.pdf) can be found here: ParseHtmlTable4