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

I am looking for the bare minimum in PDF creation here. I need to specify fonts, and embed a few images, nothing fancy.

share|improve this question

8 Answers

I would recommend http://www.pdfsharp.net/.

MigraDoc is amazing!

share|improve this answer
up vote 5 down vote accepted

ItextSharp looks good, but is there something smaller available? I don't need so many features.

share|improve this answer
itextSharp works great and if you don't need so many features then just use the ones you need. – jlafay Feb 9 '12 at 20:56
4  
would be great if you didnt have to pay for a license to use in commercial products – Ben May 28 '12 at 9:20
1  
thanks for pointing out the license issue @Ben, I had read tutorials about this before but I had never realised it wasn't free to use. Not a good sign that they don't even show the license fee on the website! – rtpHarry Jul 6 '12 at 9:06
1  
Wondered why I hadn't heard this before, it seems that v5 saw a license change. You can still use the old v4 or before in closed source projects: en.wikipedia.org/wiki/IText#History – rtpHarry Jul 6 '12 at 9:19

Specifying fonts (outside the standard ones) and handling images is fancy in pdf. I've written my own (simple) pdf library once, and switched to a large existing one for those. You might notice that lots of libraries still do not support OpenType.

LibHaru is smaller. It's just c.

share|improve this answer

This guy is still in alpha, but it may have some of the code you are looking for or you could help out..

PDF Clown

ps: don't let the name of the project change your opinion

share|improve this answer
PDF Clown has the advantage that its license is LGPL (whereas iTextSharp is a GPL variant, i.e., copy-left), so it could be more suitable for stuff you might like to redistribute. – SteveWilkinson Sep 28 '11 at 14:13

found nanopdf, its not maintained, but you can use the source code for reference.

share|improve this answer

ASPPDFlib.dll from Persist Software.Its very easy to use. Also, when you download, it gives you a help/guide manual along with several examples on how to implement.

http://www.asppdf.com/download.html

share|improve this answer
1  
It's not open source, as far as I can see... – Ola Eldøy Dec 17 '08 at 9:03

If you really need something small, why not craft yourself your own PDF library ? The PDF Reference are availables online freely, and it's not that hard to write pdf's, it's really just a funny looking text file.

share|improve this answer
The sheer size of the PDF Reference is certainly daunting, but you're right. Writing a small PDF library with a very limited scope shouldn't be that hard. – Ola Eldøy Dec 17 '08 at 8:34
42  
"Writing a small PDF library with a very limited scope shouldn't be that hard." - famous last words. – Patrick Klug Oct 14 '10 at 3:19
@PatrickKlug LOL - Mind you, the feature set in mind was extremely limited – Ola Eldøy Apr 16 '12 at 11:02

U can use libraries of PDFTron where we have PDFNet SDK... Using the PDFNet PDF library, u can create powerful PDF solutions that can convert, generate, manipulate, optimize, print, view, and markup PDF documents...

share|improve this answer
2  
the question specifically asks about open-source library. – andr Feb 12 at 6:27

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.