Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have requirement to convert a web page into pdf using java or javascript. This pdf should exactly look like print format of webpage. So basically I have to print the html webpage into pdf doc using java or javascript

share|improve this question
Check this out. xmlgraphics.apache.org/fop or you can use iText itextpdf.com (commercial). – CoolBeans Dec 7 '10 at 21:12
iText is available as APGL or a commercial license... not just commercial. Also, iText's HTML rendering isn't all that hot. – Mark Storer Dec 7 '10 at 21:38
Implementing it urself might be too much work and I don't think there are any good free packages out there. But, you could use Applescript or programmatically access the print facility in Windows to achieve this end. – euphoria83 Dec 8 '10 at 12:40

2 Answers

I suggest wkhtmltopdf. It uses webkit to render HTML to PDF. Snazzy.

PS: "exactly" is a rather fickle concept in HTML. "Pixel perfect" simply won't happen.

share|improve this answer

Try http://code.google.com/p/flying-saucer/

But it is impossible to create an exactly equal looking pdf. There is no support for scrollabars in PDF. especially, if the PDF should be printed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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