Does anyone know if it is possible to convert a HTML page (url) to a PDF using itext? If the answer is 'no' than that is OK as well since I will stop wasting my time trying to work it out and just spend some money on one of a number of components which I know can :) Thanks in advance for your responses!
|
|
I think this is exactly what you were looking for http://today.java.net/pub/a/today/2007/06/26/generating-pdfs-with-flying-saucer-and-itext.html http://code.google.com/p/flying-saucer
|
|||||||
|
|
I have ended up using ABCPdf from webSupergoo. It works really well and for about $350 it has saved me hours and hours based on your comments above. Thanks again Daniel and Bratch for your comments. |
|||
|
|
|
It doesn't appear to be very good for converting HTML. I have been testing with iTextSharp for a bit because I have a nicely formatted HTML page that I want to convert to a PDF. I first tried it with an XmlTextReader and HtmlParser.Parse, and am now trying it with simpleparser.HTMLWorker. At first I thought my PDF was badly formatted because of the CSS, but even without CSS it looked bad. I could rebuild my document piece by piece and get it to work with iTextSharp, but need to learn more about how to do that. Another temporary option I am considering is to have a user print the HTML page to a PDF and upload it to the website. It's something that does not change very often. Here's a recent link I found when looking for more about this, http://hamang.net/2008/08/14/html-to-pdf-in-net/ Search this forum for "HTML": http://www.nabble.com/iTextSharp-f4188.html It contains some interesing things like mentioning that HTML to PDF conversion is crude, and that the HTMLWorker class was made to use HTML fragments, but does not work well with nested containers. |
|||
|
|
|
When I needed HTML to PDF conversion earlier this year, I tried the trial of Winnovative HTML to PDF converter (I think ExpertPDF is the same product, too). It worked great so we bought a license at that company. I don't go into it too in depth after that. |
|||
|
|
|
Maybe you could try: |
|||
|
|
|
The answer to your question is actually two-fold. First of all you need to specify what you intend to do with the rendered HTML: save it to a new PDF file, or use it within another rendering context (i.e. add it to some other document you are generating). The former is relatively easily accomplished using the Flying Saucer framework, which can be found here: https://github.com/flyingsaucerproject/flyingsaucer The latter is actually a much more comprehensive problem that needs to be categorized further.
Using iText you won't be able to (trivially, at least) combine iText elements (i.e. If you on the other hand want to stamp the generated HTML with something like watermarks, dates or the like, you can do this using iText. So bottom line: You can't trivially integrate the rendered HTML in other pdf generating contexts, but you can render HTML directly to a blank PDF document. |
|||
|
|
protected by Flexo♦ Apr 21 '12 at 10:07
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.