vote up 5 vote down star
4

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.

flag

75% accept rate

5 Answers

vote up 5 vote down check

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

link|flag
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 at 14:32
@Rui: only create, unfortunately. – Mark Ransom Nov 13 at 1:31
vote up 0 vote down

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!

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down
PDF Creator Pilot - PDF Library for C++, C#, Delphi, ASP, ASP.NET, VB,
VB.NET, VBScript, PHP, Python
link|flag
PDF Creator Pilot does not look like it is Open Source. – Tony Meyer Sep 24 '08 at 4:39
vote up 3 vote down

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.

link|flag
The PDF reference is really helpful for understanding the LibHaru API. Thanks! – ChrisN Sep 12 '08 at 14:57

Your Answer

Get an OpenID
or

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