首页 > 代码库 > C#使用Pechkin与CPechkin生成PDF
C#使用Pechkin与CPechkin生成PDF
http://blog.sina.com.cn/s/blog_5a52cec70102wpcf.html
1. Pechkin
从NuGet程序管理器中获得Pechkin,代码示例如下:
GlobalConfig config = new GlobalConfig();
SimplePechkin pechkin = new SimplePechkin(config);
ObjectConfig objectConfig = new ObjectConfig();
objectConfig.SetPrintBackground(true)
.SetLoadImages(true)
.SetAffectPageCounts(true)
.SetPageUri("http://www.abc.com/");//此处替换为你的uri
byte[] bytePDF = pechkin.Convert(objectConfig);//此处亦支持html字符串
File.WriteAllBytes("F:\\PDFName.pdf", bytePDF);
2. CPechkin
使用Pechkin不能合并多个uri为一个PDF,故引入CPechkin,获得方式与Pechkin同,代码示例如下:
SynchronizedPechkin sc = new SynchronizedPechkin(
new GlobalConfig()
.SetMargins(new Margins(100, 100, 100, 100))
);
IList uris = new List
{
new Uri(@"http://www.a.com/"),
new Uri(@"http://www.b.com/")
};
byte[] buf = sc.Convert(uris);
string fn = @"F:\PDFName.pdf";
FileStream fs = new FileStream(fn, FileMode.Create);
fs.Write(buf, 0, buf.Length);
fs.Close();
分享:
0
喜欢
0
赠金笔
C#使用Pechkin与CPechkin生成PDF
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。