Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Did you see stackoverflow.com/questions/58730/… – Jeff Paquette Nov 12 '09 at 13:55
what exactly do you want to accomplish? you mention PDF rendering so I assume you have some GUI and want to render a PDF in a window? – Idan K Nov 12 '09 at 14:05
I want to render PDFs to the screen, much like Acrobat or Mac OS X's Preview.app does. What I need to accomplish is to display a preview of the PDF file before further processing. – badcat Nov 12 '09 at 19:38
I just want to say that - If you include all answers in your question - then what is need of answers. :) – Spark Mar 18 '10 at 11:02
That way someone who is looking for the same information does not have to search and read through all the answers himself. – badcat Mar 19 '10 at 12:39
show 2 more comments

closed as off topic by Andrew Barber Apr 30 at 18:11

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

8 Answers

up vote 3 down vote accepted

Poppler is extremely easy to use, and it comes with a few different renderer classes that you can use as a basis for your own. I highly recommend it for quick-and-dirty projects.

Ghostscript I found extremely difficult to use correctly, and writing an output driver is a very error-prone process. Avoid it.

Another you can look at is Sumatra, which, I understand, is faster and more light-weight than Poppler (though I've not investigated it).

I'm personally unaware of any LGPL'd libraries.

share|improve this answer

As far as I know there are no LGPL C++ options.

Poppler is based on xpdf and so is GPL.

The viewer for the commercial version of xpdf only seems to support Windows.

That leaves you with commercial solutions:

  • Adobe PDF Library which is very expensive as you've identified. I also find the documentation poor and the structure is C with a lot of manual resource handling which makes it quite unproductive.
  • PDFNet from pdftron is cheaper ($900 for a single license - they don't reveal OEM pricing on the website though...) and although I've not used it from looking at the API documentation it looks easier to use than Adobe's offering.

LGPL java libraries have been suggested in other answers, so you may want to think about using Java Native Interface (JNI) to call these from C++. You'd have to work out whether it will be cheaper than a commercial C++ library after considering all the developer time usign JNI will entail.

share|improve this answer
podofo's libary part (see my answer) is C++ and LPGL. – Kurt Pfeifle Aug 15 '10 at 23:59
@pipitas like BastiBense says, PoDoFo doesn't render – danio Aug 16 '10 at 15:46

Not to forget podofo.

  • Library is licensed under LGPL (as requested).
    That means: you may even use its shared library in closed sourced applications).
    (Standalone CLI utility tools that are part of the podofo package are GPL though.)
  • C++ as requested.
  • Cross-platform as requested.
share|improve this answer
2  
Unfortunately PoDoFo is a set of tools and a parser. It does not render PDF files to bitmaps. But thanks for the late answer, anyway. :) – badcat Aug 16 '10 at 7:14
1  
@BastiBense: D'uh! I overlooked your PDF-rendering part. My eyes were only on the multiplatform-, C++- and LPGL-parts, and my mind invented a "PDF-manipulating" part. – Kurt Pfeifle Aug 16 '10 at 9:57

There are quite a few Java libraries (PDFRenderer, IcePdf, JPedal) under LGPL licenses which run nicely on the Mac and cross platform.

share|improve this answer
Links would be nice ... They seems to be pdf-renderer.dev.java.net , icepdf.org , and jpedal.org . Java is not C++, but starting a jvm from the c++ program and communicating with it through native code might be feasible. – Rasmus Kaj Nov 13 '09 at 20:45
(by "native code", I mean JNI) – Rasmus Kaj Nov 13 '09 at 20:46
PDFRenderer has moved to: java.net/projects/pdf-renderer – Ben Jun 8 '12 at 7:18

Sumatra PDF Viewer (http://blog.kowalczyk.info/software/sumatrapdf/develop.html) uses MuPDF.

share|improve this answer

See PDFTron. We use it for in our document imaging system. It does the job well and it wasn't to pricey (~$1000 per CPU socket, not core).

HTH

share|improve this answer

I got to compile mupdf library works like a charm! The build process (with all its dependencies) was quite a nightmare, but the library yields a very fast and true-to-original rendering! P.S. I compiled it for the android platform. Works fine on the emulator and on the Android 2.2 device. However for the samsung Galaxy S, running Android 2.1-update1 API level 7, I just can't get the library to load.

If you want to check out pre-compiled and built libraries for desktop (linux & windows), check out this link: http://ccxvii.net/mupdf/download/

share|improve this answer
btw...mupdf is written completely in C. – Roy Samuel Mar 18 '11 at 10:14

I believe there must be XSL-FO implementations in C++ If you don't mind running a separate process from command line, you may consider using iText, Apache FOP or PDFJet

share|improve this answer
1  
I already ruled out calling command line tools (like GhostScript) for technical reasons. I consider command line utilities as a last resort if I don't find a fitting library for C/C++. – badcat Nov 12 '09 at 19:40
1  
What about PDFkit and xpdf? I think they are written in C++ and xpdf seems to be available on Mac and Windows – Dmitry Nov 12 '09 at 20:33
PDFKit was obsoleted in favor of PopplerKit on the GNUStep project. It's no longer maintained, AFAIK. Xpdf was, to my understanding, written in C, and projects like KPDF ditched it in favor of QT-Poppler. – greyfade Nov 13 '09 at 1:08
Those are tools for generating PDFs not rendering. – mikerobi Mar 24 '11 at 2:50

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