I am trying to render about 100,000 - 80 column records through FOP and it tanks pretty much everytime (OutOfMemoryException). I know iText could handle that kind of load but I can't use it because of the LGPL license. Are there any alternative Java libraries to iText that can handle rendering a high volume of data to PDF?

link|improve this question
2  
Why can't you use LGPL? – cletus Sep 4 '09 at 3:49
Why not iText? stackoverflow.com/questions/602977/… – AVD Sep 4 '09 at 3:51
6  
LGPL is not GPL, as long as you don't modify iText itself it doesn't affect commercial projects. You may know this already (or it may not be up to you), but just making sure. – Yishai Sep 4 '09 at 5:35
1  
iText is dual licensed; it is distributed under both MPL and LGPL. It is upto to you to choose which license you want to adhere. – Vineet Reynolds Sep 4 '09 at 10:27
2  
IText has now got a very aggressive AGPL license – Bryan Hunt Feb 7 at 17:43
show 3 more comments
feedback

10 Answers

up vote 6 down vote accepted

There are commercial PDF generating libraries, such as BFO and ElegantJ. If you need open source, there is PDFBox, but I don't know if it is production ready.

link|improve this answer
Thanks for the suggestions I'll take a look at them. – Mike C. Sep 4 '09 at 13:34
PdfBox is active, just the home page is pdfbox.apache.org now. – xmedeko Mar 2 '11 at 12:14
we deploy with pdfbox - it has been working very nicely. – Bob Cross Apr 18 '11 at 16:17
feedback

I just noticed that iText has a commercial license if you are willing to shell out for it.

Details here

link|improve this answer
feedback

Have a look at RenderX for an alternative to FOP.

It costs money, but if you have an existing solution in place that might be the cheapest.

link|improve this answer
feedback

Aspose offers a PDF component for Java. Aspose is also used to create Word, Excel, PowerPoint... documents in Java (or .Net).

However, it is not a free software...

link|improve this answer
feedback

There are some alternatives

http://www.ulimatbach.de/java/PDF-Bibliotheken.html

link|improve this answer
feedback

Have you tried to increase the amount of heap available to the JVM? OUtOfMemory while processing huge amounts of data usually calls for more memory.

link|improve this answer
Yeah, the problem is FOP requires you dump all the XML doc in memory it simply can't handle the load. I increased the heap space up to 1GB and still a no go. – Mike C. Sep 4 '09 at 13:30
feedback

Qoppa and Crionics both offer commercial tools to create PDFs.

link|improve this answer
feedback

Just for FWIW, LGPL is a more permissive license than GPL which permits use in proprietary works without requiring that the work in which it's used is open-sourced or anything else. There should be no reason you can use an LGPL product in anything. That includes if you want to change the LGPL software or create a derivative work, never mind just using it as a black box.

Disclaimer: I am not a lawyer - read and understand the license yourself or have your legal team look at it.

link|improve this answer
I know unfortunately my company does not allow use of Open Source products with the LGPL license. – Mike C. Sep 4 '09 at 13:29
feedback

try pdfjet is bsd licensed and there is also a commercial version with more features http://pdfjet.com/os/edition.html

link|improve this answer
feedback

This might be a little late for you Mike C. but in case others have simliar large document low footprint requirements and redistribution requirements then it's worth sharing. Docmosis Community edition can be freely redistributed and can produce very large documents with a constant memory footprint (stream based processing). You (or your customers - since you're implying redistribution) would have to be willing to install OpenOffice somewhere though to allow the conversion.

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.