Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET server based PDF generation

I'd like to dynamically generate content and then render to a PDF file. This processing would take place on a remote hosting server so using virtual printers etc is out. Does any have a recommendation for a .NET library (pref C#) that would work?

I know that I could generate a bunch of PS code and package it myself but I'd prefer something a little less tricksy at this stage.

Thanks!

like image 767
J Evans Avatar asked Jan 16 '09 15:01

J Evans


People also ask

How to create PDF dynamically in ASP net?

In this method, we create an instance of Document object (from iTextSharp. dll) and then create the instance of the PdfWriter with the document object and . pdf file to be written with FileMode. Create.


1 Answers

Have a look at http://itextsharp.sourceforge.net/. Its open source.
Tutorial: http://itextdocs.lowagie.com/tutorial/

like image 134
Akshay Avatar answered Oct 19 '22 00:10

Akshay