I need to automatically generate a PDF file from an exisiting (X)HTML-document. The input files (reports) use a rather simple, table-based layout, so support for really fancy JavaScript/CSS stuff is probably not needed.

As I am used to working in Java, a solution that can easily be used in a java-project is preferable. It only needs to work on windows systems, though.

One way to do it that is feasable, but does not produce good quality output (at least out of the box) is using CSS2XSLFO, and Apache FOP to create the PDF files. The problem I encountered was that while CSS-attributes are converted nicely, the table-layout is pretty messed up, with text flowing out of the table cell.

I also took a quick look at Jrex, a Java-API for using the Gecko rendering engine.

Is there maybe a way to grab the rendered page from the internet explorer rendering engine and send it to a PDF-Printer tool automatically? I have no experience in OLE programming in windows, so I have no clue what's possible and what is not.

Do you have an idea?

EDIT: The FlyingSaucer/iText thing looks very promising. I will try to go with that.

Thanks for all the answers

link|improve this question

78% accept rate
1  
Because there are so many questions similar to this one but not quite the same, I decided to try to collect a complete list of HTML to PDF converters into a community wiki question stackoverflow.com/questions/3178448/… – rjmunro Jul 5 '10 at 12:55
feedback

10 Answers

up vote 17 down vote accepted

The Flying Saucer XHTML renderer project has support for outputting XHTML to PDF. Have a look at an example here.

link|improve this answer
feedback

Check out iText; it is a pure Java PDF toolkit which has support for reading data from HTML. I used it recently in a project when I needed to pull content from our CMS and export as PDF files, and it was all rather straightforward. The support for CSS and style tags is pretty limited, but it does render tables without any problems (I never managed to set column width though).

Creating a PDF from HTML goes something like this:

Document doc = new Document(PageSize.A4);
PdfWriter.getInstance(doc, out);
doc.open();
HTMLWorker hw = new HTMLWorker(doc);
hw.parse(new StringReader(html));
doc.close();
link|improve this answer
It's AGPL, seems even worse than GPL, you need to be open source even if you just serve the PDF and iText is server side. – Eran Medan Mar 26 '11 at 1:54
1  
@Eran, Just use the last non-AGPL version (com.lowagie:itext:2.1.7 in Maven). – Damian Nowak Apr 20 '11 at 15:11
feedback

Did you try WKHTMLTOPDF?

It's a simple shell utility, an open source implementation of WebKit. Both are free.

We've set a small tutorial here

link|improve this answer
3  
For a straight html-page-to-pdf conversion, this is better than anything else I've seen, free or commercial. – MGOwen Nov 1 '09 at 23:08
Does it work on a non Mac OS? – Eran Medan Mar 26 '11 at 1:55
@Eran, we use it on linux. I think there's a windows version too – Mic Mar 28 '11 at 9:39
@Mic Yes, there is a Windows version too. – Viccari Mar 14 at 16:30
feedback

If you have the funding, nothing beats Prince XML as this video shows

link|improve this answer
1  
If you're looking for a cheaper alternative for Prince, try DocRaptor.com. It uses Prince as the engine. – Julie Jan 19 '11 at 1:49
feedback

If you look at the side bar of your question, you will see many related questions...

In your context, the simpler method might be to install a PDF print driver like PDFCreator and just print the page to this output.

link|improve this answer
feedback

Is there maybe a way to grab the rendered page from the internet explorer rendering engine and send it to a PDF-Printer tool automatically?

This is how ActivePDF works, which is good means that you know what you'll get, and it actually has reasonable styling support.

It is also one of the few packages I found (when looking a few years back) that actually supports the various page-break CSS commands.


Unfortunately, the ActivePDF software is very frustrating - since it has to launch the IE browser in the background for conversions it can be quite slow, and it is not particularly stable either.

There is a new version currently in Beta which is supposed to be much better, but I've not actually had a chance to try it out, so don't know how much of an improvement it is.

link|improve this answer
Thanks for the helpful answer. I don't think ActivePDF is really suitable because of the price, but it's good to know something like that exists. – panschk Mar 11 '09 at 11:05
feedback

You can use a headless firefox with an extension. It's pretty annoying to get running but it does produce good results.

Check out this answer for more info.

link|improve this answer
Doesnt sound like a very scalable solution if one needs to convert pages on the fly to pdf in parallel. If a few requests come thru that result in a conversion using FF your server will have lost a few GIG of memory just to serve a few converted pages. This would open your server to a DOS. – mP. Apr 12 '11 at 0:09
feedback

I believe dompdf hasn't been mentioned yet.

link|improve this answer
-1 it's written in PHP, while Java is preferred – bluish Sep 26 '11 at 12:22
feedback

There is a PHP class which can perform such an operation.

The web site is at http://www.rustyparts.com/pdf.php

link|improve this answer
-1 it's written in PHP, while Java is preferred – bluish Sep 26 '11 at 12:25
feedback

If you have php installed, try fpdf. It's at http://fpdf.org

link|improve this answer
I already used FPDF for a web project. It is not useful for what I want to do, because you have to build your PDF document step by step. You can't just feed it an HTML document and get a PDF doc back. – panschk Mar 11 '09 at 10:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.