tags:

views:

603

answers:

4

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

+7  A: 

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.

Daok
+1 for SharpPDF, we use it to generate PDFs from an internal purchase order system and it works great
Matt Briggs
+2  A: 

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

Andrew Kennan
+1  A: 

Same question here:

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

splattne
A: 

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!

Sun Liwen