首页 > 代码库 > html 网页生产pdf文件
html 网页生产pdf文件
在nuget中安装组件
Install-Package CPechkin
https://www.nuget.org/packages/CPechkin/
根据html生产pdf文件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;using Pechkin.Synchronized;using Pechkin;using System.Drawing.Printing;namespace ConsoleApp1{ class Program { static void Main(string[] args) { //string fileName = Path.GetTempFileName(); //using (FileStream fs = new FileStream(fileName,FileMode.OpenOrCreate)) //{ // using (StreamWriter sw = new StreamWriter(fs)) // { // sw.WriteLine(Guid.NewGuid()); // } // //sw.Flush(); // //fs.Close(); //} //var fileExists = File.Exists(fileName); //using (StreamReader sr = new StreamReader(fileName)) //{ // string res = sr.ReadLine(); //} SynchronizedPechkin sc = new SynchronizedPechkin(new GlobalConfig().SetMargins(new Margins(100, 100, 100, 100))); ObjectConfig oc = new ObjectConfig(); oc.SetPrintBackground(true).SetRunJavascript(true).SetScreenMediaType(true) .SetLoadImages(true) .SetPageUri("http://www.baidu.com"); IList<Uri> uris = new List<Uri>{new Uri(@"http://www.baidu.com"),new Uri(@"E:\temp\20160602\test.html")}; byte[] buf = sc.Convert(uris); string fn = Path.GetTempFileName() + ".pdf"; FileStream fs = new FileStream(fn, FileMode.Create); fs.Write(buf, 0, buf.Length); fs.Close(); } }}
html 网页生产pdf文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。