13

I want to write some String data to a pdf file programmatically, i want to know what are the C libraries that i have to use and how to use them

user224790
  • 201
  • 2
  • 3
  • 5

4 Answers4

9

There's libHaru and PDFlib.

Laurent Parenteau
  • 2,516
  • 20
  • 31
7

The Haru library, on sourceforge. We have had good experience with it.

Radim Cernej
  • 875
  • 1
  • 10
  • 21
1

PoDoFo is a good option. Here is a discussion listing libraries for C/C++ languages.

Community
  • 1
  • 1
sventechie
  • 1,859
  • 1
  • 22
  • 51
1

Yes, you can use C++ or C or any text processing language to create PDF files. The preferred method is to go to Adobe PDF Website and get a book or the specification for the latest version of PDF. They own the language, so they are the official starting place.

Thomas Matthews
  • 56,849
  • 17
  • 98
  • 154
  • 7
    They do not own the PDF specification, it is an ISO standard, and anyone and everyone is allowed to use it. – Rowan Dec 23 '09 at 05:50