vote up 1 vote down star
5

How can I make a PDF from text file or programmatically put text into a PDF file ?

Thanks

flag

31% accept rate
Is this a workflow or do you want to do it pragmatically? Language? – nzpcmad Feb 22 at 19:44
151 questions and a 2% accept rate. you must be very picky! haha. – dotjoe Aug 28 at 20:52
and I thought my accept rate was dangerously low – devio Aug 28 at 20:53

4 Answers

vote up 0 vote down

Do you mean you want to write a PDF creator SW? If yes, you could get much sample codes from http://sourceforge.net/index.php.

link|flag
vote up 5 vote down

iTextSharp is one of the best open source frameworks for creating/manipulating PDFs in .NET: http://itextsharp.sourceforge.net/

link|flag
vote up 9 vote down

iTextSharp is is a great open source project that can be downloaded from SourceForge. It is widely used, free and easy to get up and running with lots of examples and Tutorials available.

You can get up an running quite quickly example:

Document doc = new Document();
PdfWriter.getInstance(doc, new FileStream("first.pdf", FileMode.Create));
doc.Open();
doc.Add(new Paragraph("Hello World"));
doc.Close();
link|flag
iTextSharp works really well. cheeso.members.winisp.net/srcview.aspx?dir=misc&a… But XPS generation is easier and better integrated with WPF. – Cheeso Feb 24 at 7:02
vote up 0 vote down

For a non-open source version which is very good, you can check ABCpdf.

link|flag

Your Answer

Get an OpenID
or

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