Earlier quoted context omitted.
The classname "lowagie" will live forever in the memory of Java developers, but we've all abandoned itext for the fork: https://github.com/LibrePDF/OpenPDF
I thought most were using Apache PDFBox these days. Anyone have any thoughts on how the two libraries compare in 2025? I'm particularly interested in programatic creation of PDFs. I know historically PDFBox is a bit lower level whereas iText was a bit more user friendly, but that's not too big of a deal for me.
iText PDF Library turns 25
21–29 of 29 posts
Re: iText PDF Library turns 25
#22They're now owned by "copyright trolls". They hit up a company I know because their web-crawler found a PDF that someone generated using their library over a decade ago. https://beemanmuchmore.com/software-licensing-trolls-apryse-... I'd avoid it.
Re: iText PDF Library turns 25
#23Earlier quoted context omitted.
Hmmm... they link to the AGPL and state it's under that. In a conflict between the two, the website extras, and the AGPL requirements, which would win? I personally think the AGPL would win, but it's not something I'd be willing to enter a legal battle over.
Even more confusing is that the AGPL explicitly deals with this scenario: “ If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. ” https://www.gnu.org/licenses/agpl-3.0.en.html I think the expectation here is that commercial users purchase the AGPL opt-out.
Back in the day FlowPlayer (a JavaScript component to play videos on the web) used additional terms per GPL section 7 to force users of their unpaid version to keep their mark intact in the UI or for modifications keep a "based on FlowPlayer" in.
I followed the discussion on this back then and the consensus seemed to be, that this is in line with what section 7 of the GPL allows. I think there was even a statement of the FSF, but I could not find it anymore.
Of course the iText case is different, but I believe section 7 (especially 7b) allows a way to add terms for attribution.
Re: iText PDF Library turns 25
#24> When using iText Core/Community under AGPL, you must prominently mention iText and include the iText copyright and AGPL license in output file metadata, and also retain the producer line in every PDF that is created or manipulated using iText. https://itextpdf.com/how-buy/AGPLv3-license Not really AGPL, they just advertise AGPL and mean something else. Avoid.
Re: iText PDF Library turns 25
#25Earlier quoted context omitted.
Even more confusing is that the AGPL explicitly deals with this scenario: “ If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. ” https://www.gnu.org/licenses/agpl-3.0.en.html I think the expectation here is that commercial users purchase the AGPL opt-out.
I don’t think the outputted files count as part of the program, which makes that requirement even more absurd. Imagine if Bic said you had to write their name on every page you used one of their pens on.
Re: iText PDF Library turns 25
#26Re: iText PDF Library turns 25
#27I recently used Okular (KDE linux application) to annotate a PDF, the interface to add text was clunky, not inline. Is there a better app available for linux? It uses the poppler library as its back end: https://poppler.freedesktop.org/
Re: iText PDF Library turns 25
#28Re: iText PDF Library turns 25
#29Earlier quoted context omitted.
I use PDFBox. There are some FOSS layout libraries you probably want to add one or more of, depending on your needs. It's disgustingly fast and capable. In one project we crunched out 150k PDF documents in less than forty minutes from roughly 6 GB input data, on a mid laptop, including a fair bit of other file types related to those documents. Fairly low level but not hard to get started with. You might have to wrap…
Thanks. I'm using it for a side project now and have my own layout library which I may consider open sourcing. I started to question if I made the wrong decision if OpenPDF had more momentum!
You could use both if you want, I've done it in toy projects when evaluating.