C#使用wkhtmltopdf,把HTML生成PDF
阿新 • • 發佈:2018-11-10
最近花了2天多的時間終於把HTML生成PDF弄好了。步驟如下:
1、首先是技術選型。看了好多都是收費的就不考慮了。
免費的有:
- jsPDF(前端生成,清晰度不高,生成比較慢)
- iText(嚴格要求html標籤。這個好像也是收費的)
- wkhtmltopdf(簡單、配置選項多、生成快、支援跨平臺、也支援HTML生成圖片)
因此選擇wkhtmltopdf。
2、前期準備,首先需要下載wkhtmltopdf.exe(下載地址:https://wkhtmltopdf.org/downloads.html)閱讀配置引數(https://wkhtmltopdf.org/usage/wkhtmltopdf.txt
常用引數:
- -T 0 :設定上下左右margin-top=0(-B 0 -L 0 -R 0 -T 0,上下左右都設定一下)
- -s A4:設定A4紙大小,預設A4
- --disable-smart-shrinking:禁止縮放(不設定這個,生成的pdf會縮放)
- --zoom 1:設定縮放係數,預設為1。如果--disable-smart-shrinking設定了,--zoom就不用設定了。
- --cookie name value:設定cookie,如果下載的url需要登入(用cookie),那麼這個引數很重要。
3、設定需要列印的頁面(核心是分頁)
A4紙大小:210mm×297mm,因此頁面的每個div大小也是A4紙大小。
這裡的頁面設定很重要。另外,設定了分頁的頁碼,示例如下:
<style> #view { height: 100%; margin: auto; padding: 0; width: 210mm; } /*設定A4列印頁面*/ /*備註:由於@是否特殊符號,樣式放在css檔案中沒問題,放在cshtml檔案就不行了,需要@@。*/ @preview-item { size: A4; margin: 0; } @media print { .preview-item { margin: 0; border: initial; border-radius: initial; width: initial; min-height: initial; box-shadow: initial; background: initial; page-break-after: always; } } .preview-item { width: 100%; height: 297mm; position: relative; } .page-view { position: absolute; width: 100%; text-align: center; height: 60px; line-height: 60px; bottom: 0; } </style> <div id="view"> <div class="preview-item"> <div class="preview-item-body">這是第一頁</div> <div class="page-view">1/3</div> </div> <div class="preview-item"> <div class="preview-item-body">這是第二頁</div> <div class="page-view">2/3</div> </div> <div class="preview-item"> <div class="preview-item-body">這是第三頁</div> <div class="page-view">3/3</div> </div> </div>
4、C#程式碼實現(核心是Arguments的設定)
/// <summary> /// HTML生成PDF /// </summary> /// <param name="url">url地址(需要包含HTTP://)</param> /// <param name="path">PDF存放路徑(可以是aaa.pdf,也可以用路徑,只能是絕對地址,如:D://aaa.pdf)</param> public static bool HtmlToPdf(string url, string path) { path = HttpContext.Current.Server.MapPath(path);string cookie = "cookieKey cookieValue";//改為為你自己的 string Arguments = "-q -B 0 -L 0 -R 0 -T 0 -s A4 --no-background --disable-smart-shrinking --cookie " + cookie + " " + url + " " + path; //引數可以根據自己的需要進行修改 try { if (string.IsNullOrEmpty(url) || string.IsNullOrEmpty(path)) return false; var p = new Process(); string str = HttpContext.Current.Server.MapPath("/htmlToPDF/wkhtmltopdf.exe"); if (!File.Exists(str)) return false; p.StartInfo.FileName = str; p.StartInfo.Arguments = Arguments; p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardInput = true; p.StartInfo.RedirectStandardOutput = true; p.StartInfo.RedirectStandardError = true; p.StartInfo.CreateNoWindow = false; p.Start(); p.WaitForExit(); System.Threading.Thread.Sleep(1000); return true; } catch (Exception ex) { LogHelper.WriteError(ex); } return false; }
方法的呼叫:
string url = Request.Url.AbsoluteUri.Replace("DownloadPDF", "Detail");//DownloadPDF是下載頁面,Detail是上面的HTML頁面 string pdfDirectory = "/Data/PDF/"; if (!System.IO.Directory.Exists(HttpContext.Current.Server.MapPath(pdfDirectory))) { System.IO.Directory.CreateDirectory(HttpContext.Current.Server.MapPath(pdfDirectory)); } string path = pdfDirectory + Guid.NewGuid() + ".pdf"; HtmlToPdf(url, path); if (!System.IO.File.Exists(Utils.GetMapPath(path)))//如果生成失敗,重試一次 { HtmlToPdfHelper.HtmlToPdf(url, path); } if (!System.IO.File.Exists(Utils.GetMapPath(path)))//如果生成失敗,重試一次 { HtmlToPdfHelper.HtmlToPdf(url, path); }
5、ok,採坑結束~