I'm looking for a (preferably LGPL'ed) PDF-rendering library that I can use on Mac OS X, Windows and Linux using C++.
So far I found:
(updated with content from answers below)
- Poppler
- GPL
- very easy to use
- Qt4-backend
- GhostScript
- GPL (depending on the version of GhostScript)
- command line only
- does not support PDF boxes
- MuPDF (Sumatra)
- A drama to compile on its own (uses DARCS and Jam)
- Based on GhostScript (Fitz)
- Seems to be what Palm (WebOS) is using.
- PDFTron
- Commercial (did not test it): $1,000 per CPU socket
- Adobe PDF-Library
- very expensive: $25,000 once + $5,000 yearly per platform
- complex to use
Thanks in advance!
Update:
Until today I did not find a library to render PDFs properly in commercial applications. My fallback was to use a minimal compiled version of GhostScript and ship with with my application.
To make it comfortable, I wrote a small wrapper class around the GhostScript CLI so I could call it automatically from my application and have it render my PDF files. After that it outputs the result as PNG into its standard-out (stdout) which in turn is consumed by my application.
It turns out this is a very flexible approach and GhotScript can be replaced without touching my own code. Couldn't see any performance problems so far either.