Does anyone have experience using the following libraries (or others) to build PDF files in C#? Which have you found to be the easiest and most straightforward? What I would like to do is push some HTML into a library and have it spit out a PDF. Any help would be appreciated.
|
12
|
|
|
|
|
|
We've used iTextSharp and found it very user-friendly and super-fast. |
||||
|
|
|
I have used ExpertPDF with great success. We have tried a lot of html to pdf converters, but in my opinion, ExpertPDF is one of the best: Thanks, John |
||
|
|
|
|
I am facing a similar situation at work. However, I am also looking towards providing other formats (word, excel). For this, I am looking at OpenOffice, as it can arbitrarily target many formats. Plus it's open source (I tend to take this into account). You can provide it with a HTML document (in a zip), and send a server instance instructions to convert etc. There are also bindings for .net, but this appears to be very heavyweight on code. Also you can send it ODF, if this is an option, to more accurately control the look. |
||
|
|
|
|
I've done well with ABCpdf. Their image components (ImageGlue) are helpful too. |
||
|
|
|
|
I have used PDFNet SDK for manipulating PDF documents. It is probably not the best tool for reports generation, but to get back to editable content from PDF, I haven't yet found anything that works better. |
||
|
|
|
|
Creating a PDF and using HTML as the content is pretty easy to do with Quick PDF Library and its DrawHTMLText function. This C# example uses the ActiveX edition of the library.
|
||
|
|
|
|
Another vote for iTextSharp. I used it to pull out a page from a huge PDF and stream it out to a web-browser (oStream)
Job done |
||
|
|
|
|
I noticed you added ExpertPDF to the list. We used that as well and found it quick and easy for small file sizes, but it scaled terribly once we got over a few dozen pages. We were also unimpressed with their customer service response when we we reported the scalability problem. |
||
|
|
|
|
I have used DynamicPDF and even when I was a newbie I found it easy to use. Here is one case where I generate a 1000 page report sent to a sponsor combining multiple PDF files into one large one (That's how they want it, that's how they get it)...
|
|||
|
|
|
|
I have used itextsharp before and it was pretty good If you would like i can dig up an example or two but they have very good info online. |
||
|
|
|
|
I could recommend ABCpdf. Good options, easy to understand and a good manual. I think it's fairly cheap too. |
||
|
|
|
|
I have used and enjoyed iTextSharp. It worked well for the more complicated requirements. However, I would like to add that the VisualStudio Report Designer comes with a PDF generator. So if all you need is to pipe out a report to a PDF then I think this will meet most of your needs. |
||
|
|
|
|
Dynamic PDF really worked well for the reports we built. |
||
|
|
|
|
If you are translating HTML to PDF, I would look into using Adobe FOP, especially if its well-formed HTML (XHTML). You could use a XSLT to transform the HTML to XSL-FO and then use Apache FOP to generate the PDF. I generate a PDF from XML this way, and it's pretty easy once you know XSLT. Also, if you are generating the HTML from an XML, you could just perform the XSLT on that XML I've heard good things about TallPDF from a former boss. He swore by it. |
|||
|
|
