I'm using xhtmlrenderer + iText in Java to generate PDFs for some pages in my application. I've managed to convert some pages already. However, I came across a limitation to this approach where it can't convert pages dynamically created using JavaScript scripts (some by JQuery). Are there other available tools for this?

Thanks.

link|improve this question

50% accept rate
i've also looked, though i was looking for a python solution. i couldn't find one that supported javascript as far as i remember. – Chris Nov 23 '10 at 21:10
If this is something that only needs to be done once, and not dynamically, you might see if your Print dialog has an option for PDF output. – jnpcl Nov 23 '10 at 21:27
One approach might be to use JavaScript to grab the entire DOM after a page is stable, serialize the DOM, and then send it to the server for PDF processing. – tschaible Apr 22 '11 at 12:11
feedback

1 Answer

Your best bet is wkhtmltopdf. It's a PDF converter sitting on top of web kit, complete with its JS environment. I haven't tried it myself (yet).

link|improve this answer
I'm not really sure if that's what I need. I'm actually doing some sort of a reporting tool for a Web application that can generate PDF versions of the pages. – risc80x86 Nov 25 '10 at 22:49
I'm a committer on iText. I know what it can do, and I know its HTML converter isn't its strong suit. Call wkhtmltopdf via the command line in java. HTML in, PDF out, and it'll handle any and all DOM script you throw its way. What am I missing? – Mark Storer Nov 26 '10 at 6:04
Can I do this over Java? As in via a method call? – risc80x86 Dec 1 '10 at 8:38
Runtime.getRuntime().exec(commandLine); Or perhaps some JNI calls. – Mark Storer Dec 1 '10 at 20: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.