HTML转pdf文件

NUGET 安装 Select.HtmlToPdf库

HTML转pdf文件

 

代码如下:

public class PdfUtils
    {
        /// <summary>
        /// html字符串转PDF
        /// </summary>
        /// <param name="html">html</param>
        /// <param name="pdfFileName">生成的pdf路径</param>
        public static void HtmlToPdfFile(string html, string pdfFileName)
        {
            HtmlToPdf htmlToPdf = new HtmlToPdf();
            var docStr = htmlToPdf.ConvertHtmlString(html);
            PdfDocument doc = new PdfDocument();
            doc.Append(docStr);
            doc.Save(pdfFileName);
            doc.Close();
        }
    }

 

HTML转pdf文件

上一篇:centos7安装ceph-luminous(1 mon+2 osd)


下一篇:关于PHP的JsonSerializable