.NET server based PDF generation

后端 未结 11 1943
孤街浪徒
孤街浪徒 2020-12-30 10:53

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. Do

相关标签:
11条回答
  • 2020-12-30 11:02

    I've had good experiences with Winnovative's HTML to PDF.

    And bad ones with Open Source HTML Doc (Problems with form elements + CSS).

    0 讨论(0)
  • 2020-12-30 11:03

    I have had success using Siberix

    http://www.siberix.com/

    Corporate License: $350 USD (A single license covers unlimited number of company's developer seats, unlimited number of company's web servers and unlimited number of distributions as a part of your application.)

    0 讨论(0)
  • 2020-12-30 11:03

    We use the Amyuni PDF Converter and have used it successfully for several years. Our usage is via the COM interface, but it does support a .NET interface.

    0 讨论(0)
  • 2020-12-30 11:04

    RDLC & the Report Viewer controls can generate PDF either at the Client's discretion or at server command which can then be served as a PDF mime-type.

    0 讨论(0)
  • 2020-12-30 11:06

    Free PDF Generator .NET (WkHtmlToPdf wrapper) can generate pretty PDF from HTML template with one line of code:

    var pdfBytes = (new NReco.PdfGenerator.HtmlToPdfConverter()).GeneratePdf(htmlContent);
    

    (all you need is one DLL, no external dependencies)

    0 讨论(0)
  • 2020-12-30 11:06

    I've used PDF4NET from O2solutions with much success. They support all sorts of scenarios and digital signing of the pdf.

    0 讨论(0)
提交回复
热议问题