I have some XML files which are used to generate my webpages, however I need to be able to allow the user to select a number of pages then combine them into one PDF. This PDF needs to have different styling to the actual web page (the content is kept in XML files ;) ).

p.s. the PDF must have table of contents... and will include images taken from the website.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You would use a library like iText or iTextSharp to build a PDF using your content.

link|improve this answer
is iText a free product? – MMAMail.com Apr 13 '10 at 8:33
iText/iTextSharp are AGPL-ed. so, they are free if you are ready to open source your application. – Bobrovsky Sep 24 '11 at 6:09
feedback

Write an XSLT stylesheet which transforms your XML files to XSL-FO and then use an XSL-FO implementation (e.g. Apache FOP) to produce PDF.

link|improve this answer
do you know any good references for this because all the sources I found where out of date and not comprehensive – MMAMail.com Apr 12 '10 at 15:57
feedback

I use Prince in my product. It's not cheap (neither is my product), but it's extremely easy to use, and very fast.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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