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

I want to be able to generate PDF ouput from my (native) C++ Windows application. Are there any free/open source libraries available to do this?

I looked at the answers to this question, but they mostly relate to .Net.

share|improve this question

9 Answers

up vote 27 down vote accepted

LibHaru

Haru is a free, cross platform, open-sourced software library for generating PDF written in ANSI-C. It can work as both a static-library (.a, .lib) and a shared-library (.so, .dll).

Didn't try it myself, but maybe it can help you

share|improve this answer
1  
LibHaru is working well. Thanks! – ChrisN Sep 12 '08 at 14:47
Can we read pdf files with LibHaru or we can only create? – Rui Carneiro Apr 21 '09 at 14:32
2  
@Rui: only create, unfortunately. – Mark Ransom Nov 13 '09 at 1:31
FWIW, I wrote a POCO wrapper for libHaru ( github.com/pocoproject/poco/tree/master/PDF ). We never released it but it is near-production-grade code. – Alex Nov 29 '12 at 20:09

I worked on a project that required a pdf report. After searching for online I found the PoDoFo library. Seemed very robust. I did not need all the features, so I created a wrapper to abstract away some of the complexity. Wasn't too difficult. You can find the library here:

http://podofo.sourceforge.net/

Enjoy!

share|improve this answer

If you're brave and willing to roll your own, you could start with a PostScript library and augment it to deal with PDF, taking advantage of Adobe's free online PDF reference.

share|improve this answer
The PDF reference is really helpful for understanding the LibHaru API. Thanks! – ChrisN Sep 12 '08 at 14:57
8  
You'd have to be exceptionally brave. With a fair bit of spare time thrown in for good measure. – Rowan Aug 23 '10 at 17:00
  • LibHaru seems to be used by many.

A non-open source approach is: PDF Creator Pilot which provides more language options including C++, C#, Delphi, ASP, ASP.NET, VB, VB.NET, VBScript, PHP and Python

share|improve this answer
4  
PDF Creator Pilot does not look like it is Open Source. – Tony Meyer Sep 24 '08 at 4:39
it's not; I made that clear in the edit. – vy32 Feb 28 '12 at 2:32

PDF Hummus. see for http://pdfhummus.com/ - contains all required features for manipulation with PDF files except rendering.

share|improve this answer
+1 although "all features" may be a bit strong since this looks like a young library. – Tibo Jan 3 at 1:23

It depends a bit on your needs. Some toolkits are better at drawing, others are better for writing text. Cairo has a pretty good for drawing (it support a wide range of screen and file types, including pdf), but it may not be ideal for good typography.

share|improve this answer

muPdf library looks very promising: http://mupdf.com/

There is also an open source viewer: http://blog.kowalczyk.info/software/sumatrapdf/free-pdf-reader.html

share|improve this answer
It looks like muPdf is for rendering PDFs, not generating them? – vy32 Aug 20 '12 at 21:16
it is also GPL which is not free – Ika Mar 11 at 17:53

http://wxcode.sourceforge.net/docs/wxpdfdoc/

Works with the wxWidgets library.

share|improve this answer

A superb solution to this problem is to use Qt. Here is an example to illustrate how trivial it becomes to output either PDF or SVG.

#include <QtGui>
#include <QSvgGenerator>

class MyWidget : public QWidget
{
public:
    MyWidget(QWidget * parent = 0)
        : QWidget(parent)
    {
        setWindowTitle("versatile-imaging");
    }
protected:
    void paintEvent(QPaintEvent * /*event*/)
    {
        render(this);
    }

    void render(QPaintDevice * device,
                const QPoint & targetOffset = QPoint(),
                const QRegion & sourceRegion = QRegion(),
                RenderFlags renderFlags = RenderFlags( DrawWindowBackground | DrawChildren ) )
    {
        Q_UNUSED(targetOffset);
        Q_UNUSED(sourceRegion);
        Q_UNUSED(renderFlags);

        QPainter painter(device);

        const int w = device->width();
        const int h = device->height();

        const qreal penwidth = std::min(w, h) / 120.0;
        const QPen pen(Qt::blue, penwidth, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
        painter.setPen(pen);
        painter.drawRect( QRect(QPoint(10, 10), QSize(w-20, h-20)) );

        painter.setPen(Qt::red);
        painter.drawText( QPointF(w/2, h/2), "Hello" );
    }

    virtual void keyPressEvent(QKeyEvent * event)
    {
        switch(event->key()) {
        case Qt::Key_P: pdf_save(); break;
        case Qt::Key_S: svg_save(); break;
        }
    }

private:
    void
    pdf_save()
    {
        QPrinter printer(QPrinter::HighResolution);
        printer.setOutputFormat(QPrinter::PdfFormat);
        printer.setResolution(100 /*dpi*/);
        printer.setOutputFileName(QString("%1.pdf").arg(windowTitle()));
        printer.setFullPage(true);
        printer.setOrientation(QPrinter::Landscape);
        printer.setPaperSize(QPrinter::Letter);

        render(&printer);
        QMessageBox::information(this, "Print", "Document saved to PDF", QMessageBox::Ok);
    }

    void
    svg_save()
    {
        QSvgGenerator svg;
        svg.setFileName(QString("%1.svg").arg(windowTitle()));
        svg.setSize(QSize(1100, 850));
        svg.setViewBox(QRect(0, 0, 1100, 850));
        svg.setTitle(windowTitle());

        render(&svg);
        QMessageBox::information(this, "SVG", "Document saved to SVG", QMessageBox::Ok);
    }
};

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWidget mywidget;
    mywidget.show();
    return app.exec();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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