Example provided would be helpful.
+2
A:
use iText. its a great library. you have to hack a lot together if your pdf grows, but overall very handy
basic document creation:
Document document = new Document();
try {
PdfWriter.getInstance(document,
new FileOutputStream("HelloWorld.pdf"));
document.open();
document.add(
new Paragraph("Hello World"));
} catch (Exception e) {
// handle exception
}
}
document.close();
David
2010-03-06 18:46:59
A:
Or, if you are using PHP, http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php lists some nice options!
susmits
2010-03-06 18:57:32