vote up 2 vote down star
1

What is the library in C# that I need to output in a PDF? I would like to do a simple report in PDF instead to display information in the screen?

Dupe: http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application

flag

closed as exact duplicate by Jason Jackson Dec 22 '08 at 15:17

4 Answers

vote up 6 vote down check

I suppose you want something free. Here is a list of free PDF library for C#. You cannot do PDF from the Framework (well not easily). Try SharpPDF, free and great feature.

At job we use Siberix (not free). Very fast and all can be made with XML/XSLT. We really enjoy it.

link|flag
+1 for SharpPDF, we use it to generate PDFs from an internal purchase order system and it works great – Matt Briggs Dec 22 '08 at 15:04
vote up 2 vote down

I've used iTextSharp for that stuff in the past.

link|flag
vote up 1 vote down

Same question here:

How do I programmatically create a PDF in my .NET application?

link|flag
vote up 0 vote down

I use iTextSharp in projects years ago, It's very nice for normal needs, which include generate pdf on-the-fly, fill a form and flat the form to prevent form further modification, etc. It's a .Net port of famous java project iText. Have a try!

link|flag

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