c# 免費組件html轉pdf的實現過程

免費組件html轉pdf

背景

我們在公司可能遇到一些文件轉pdf的場景,這裡主要講述html轉pdf。

通常在c#裡面有很多html轉pdf的組件,我們采用第三方的組件,比如 iTextSharp, aspose等,但是有些組件用起來復雜,需要很多配置,而且在轉換出來之後可能出現排版不正確的場景

下面主要介紹Select.HtmlToPdf的使用,很簡單且方面,可以一次性生成幾百頁不是問題,關鍵是免費哦。

1.在guget下載組件

如上有Select.HtmlToPdf和 Select.HtmlToPdf.netcore,兩種的使用差不多,隻是Select.HtmlToPdf.netcore支持css效果更好,不過Select.HtmlToPdf.netcore隻支持win,不支持linux,這個有點坑,其他還好,接下來我們使用Select.HtmlToPdf.netcore進行演示

2.使用:直接上代碼

 static void Main(string[] args)
        {
            try
            {
                string fullPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "文件夾", "文件夾下的html文件");
                string line = "";
                var testStr = new StringBuilder();
                using (StreamReader sr = new StreamReader(fullPath))
                {
                    while ((line = sr.ReadLine()) != null)
                    {
                        testStr.Append(line);
                    }
                }
                SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
                PdfDocument doc = new PdfDocument();
                for (int i = 0; i < 10; i++)
                {
                    testStr.Replace("#ImageUrl#", Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "文件夾", "文件夾下的圖片"));//由於html中圖片,使用相對地址解析不出來,所以使用替換方式去解決
                    var docStr = converter.ConvertHtmlString(testStr.ToString());
                    doc.Append(docStr);
                }
                doc.Save("xxxx");保存到xxx路徑下
                doc.Close();
 
            }
            catch (Exception e)
            {
                //dosomething 
            }
            Console.ReadLine();
        }
    }

如上一次性打印多張pdf,思路:

1.在本地找到要轉換的html文件,當然你也可以配置在程序裡面,通過流的形式讀出來,也可用file的方法去讀,拿到html字符串

2.創建一個html轉pdf的對象,創建一個新的pdf文件對象

3.通過html轉pdf對象的converthtmlstring去獲取html字符串,另外還提供converurl的方法去把一個網頁轉換換成pdf,是不是很方便切功能強大。

4.save用來保存pdf的路徑,關閉pdf對象,操作文成,即可看到

這樣就是實現瞭html 轉pdf,另外,這個組件還提供瞭很多api可用

附上鏈接:https://selectpdf.com/docs/Index.htm

C#如何將html轉pdf

public string HtmlToPdf(string url)
        {
            bool success = true;
           // string dwbh = url.Split('?')[1].Split('=')[1];
            //CommonBllHelper.CreateUserDir(dwbh);
            //url = Request.Url.Host + "/html/" + url;
            string guid = DateTime.Now.ToString("yyyyMMddhhmmss");
            string pdfName =   "1.pdf";
            //string path = Server.MapPath("~/kehu/" + dwbh + "/pdf/") + pdfName;
            string path = "D:\\" + pdfName;
            try
            {
                if (string.IsNullOrEmpty(url) || string.IsNullOrEmpty(path))
                    success = false;
                string str = Server.MapPath("~\\bin\\wkhtmltopdf.exe");
                Process p = System.Diagnostics.Process.Start(str, url+" "+path);
                p.WaitForExit();
                if (!System.IO.File.Exists(str))
                    success = false;
                if (System.IO.File.Exists(path))
                {
                    FileStream fs = new FileStream(path, FileMode.Open);
                    byte[] bytes = new byte[(int)fs.Length];
                    fs.Read(bytes, 0, bytes.Length);
                    fs.Close();
                    if (Request.UserAgent != null)
                    {
                        string userAgent = Request.UserAgent.ToUpper();
                        if (userAgent.IndexOf("FIREFOX", StringComparison.Ordinal) <= 0)
                        {
                            Response.AddHeader("Content-Disposition",
                                          "attachment;  filename=" + HttpUtility.UrlEncode(pdfName, Encoding.UTF8));
                        }
                        else
                        {
                            Response.AddHeader("Content-Disposition", "attachment;  filename=" + pdfName);
                        }
                    }
                    Response.ContentEncoding = Encoding.UTF8;
                    Response.ContentType = "application/octet-stream";
                    //通知瀏覽器下載文件而不是打開
                    Response.BinaryWrite(bytes);
                    Response.Flush();
                    Response.End();
                    fs.Close();
                    System.IO.File.Delete(path);
                }
                else
                {
                    Response.Write("文件未找到,可能已經被刪除");
                    Response.Flush();
                    Response.End();
                }
            }
            catch (Exception ex)
            {
                success = false;
            }
            return "";
        }
protected void Page_Load(object sender, EventArgs e)
{
HtmlToPdf("http://www.deriva.cn");
}

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: