Convert HTML to PDF in ASP.NET MVC

前端 未结 8 631
陌清茗
陌清茗 2021-02-06 07:56

Im working in a project which requires current html page to convert in pdf and that pdf will automatically save on button click on server and its reference will be save in da

相关标签:
8条回答
  • 2021-02-06 08:28

    You can use the Free Html To Pdf Converter from SelectPdf (http://selectpdf.com/community-edition/).

    Code for MVC looks like this:

    [HttpPost]
    public ActionResult Convert(FormCollection collection)
    {
        // read parameters from the webpage
        string url = collection["TxtUrl"];
    
        string pdf_page_size = collection["DdlPageSize"];
        PdfPageSize pageSize = (PdfPageSize)Enum.Parse(typeof(PdfPageSize), pdf_page_size, true);
    
        string pdf_orientation = collection["DdlPageOrientation"];
        PdfPageOrientation pdfOrientation = (PdfPageOrientation)Enum.Parse(
            typeof(PdfPageOrientation), pdf_orientation, true);
    
        int webPageWidth = 1024;
        try
        {
            webPageWidth = System.Convert.ToInt32(collection["TxtWidth"]);
        }
        catch { }
    
        int webPageHeight = 0;
        try
        {
            webPageHeight = System.Convert.ToInt32(collection["TxtHeight"]);
        }
        catch { }
    
        // instantiate a html to pdf converter object
        HtmlToPdf converter = new HtmlToPdf();
    
        // set converter options
        converter.Options.PdfPageSize = pageSize;
        converter.Options.PdfPageOrientation = pdfOrientation;
        converter.Options.WebPageWidth = webPageWidth;
        converter.Options.WebPageHeight = webPageHeight;
    
        // create a new pdf document converting an url
        PdfDocument doc = converter.ConvertUrl(url);
    
        // save pdf document
        byte[] pdf = doc.Save();
    
        // close pdf document
        doc.Close();
    
        // return resulted pdf document
        FileResult fileResult = new FileContentResult(pdf, "application/pdf");
        fileResult.FileDownloadName = "Document.pdf";
        return fileResult;
    }
    

    VB.NET MVC version of the code can be found here: http://selectpdf.com/convert-from-html-to-pdf-in-asp-net-mvc-csharp-and-vb-net/

    0 讨论(0)
  • 2021-02-06 08:35

    I have used Canvas to PDF and that worked great for me. Here is the perfect tutorial for the same: https://www.freakyjolly.com/jspdf-multipage-example-generate-multipage-pdf-using-single-canvas-of-html-document-using-jspdf/

    Thank you everyone.

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