ASP.NET C#根據(jù)HTML頁面導(dǎo)出PDF
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
記錄一個(gè)將html頁面轉(zhuǎn)換成PDF文件的轉(zhuǎn)換器,該轉(zhuǎn)換器功能強(qiáng)大,且對(duì)于頁面上的css,js等在轉(zhuǎn)換過程中不會(huì)丟失,效果很棒! 轉(zhuǎn)換器下載地址:wkhtmltopdf(官網(wǎng)) 同時(shí)附上C#將html轉(zhuǎn)換為PDF的代碼: //生成PDF string page= "~/Student/Print_StudentCard.aspx";//要打印的頁面 string pdf = Server.MapPath("~/Upload/wkhtmltox/wkhtmltox/bin/wkhtmltopdf.exe");//轉(zhuǎn)換器路徑 string pdfpath = "~/Student/Card.pdf";//生成的PDF文件路徑 //參數(shù)中"表示字符",注意參數(shù)"生成的PDF文件路徑"要保留雙引號(hào) Process p = System.Diagnostics.Process.Start(pdf, " -O Landscape " + page+ " "" + Server.MapPath(pdfpath) + """);//-O 指定頁面布局為橫向或縱向 p.WaitForExit();
//下載PDF //方法1,使用下面代碼,在線打開 Response.Redirect(pdfpath);
//方法2,使用下面代碼,讓客戶下載 Down(Server.MapPath(pdfpath), "考生信息.pdf"); //下載 public void Down(string filename, string fileDownName)//參數(shù)為:下載的文件全路徑,下載保存時(shí)的文件名 { Response.ClearContent(); Response.ContentType = "application/octet-stream"; Response.AddHeader("content-disposition", "attachment;filename=" + fileDownName); Response.TransmitFile(filename); Response.Flush(); } 以上代碼只是一個(gè)demo,具體使用時(shí)還請(qǐng)根據(jù)實(shí)際情況修改。當(dāng)然wkhtmltopdf也為我們提供了很多參數(shù),可以更好的達(dá)到轉(zhuǎn)換效果。 該文章在 2023/5/15 19:16:48 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |