zoukankan      html  css  js  c++  java
  • 使用Pechkin与CPechkin生成PDF

    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();
  • 相关阅读:
    Spring笔记:常用xml标签和属性 山上下了雪
    Spring笔记:Hello World 山上下了雪
    Spring笔记:bean的自动装配 山上下了雪
    IntelliJ IDEA 2020.3.3 x64破解到2099年
    每日长进计划
    idea测试类中的测试方法没有运行按钮
    删除所有的phpfpm进程命令
    高质量编程
    单例模式也能玩出花
    宝塔Linux面板安装命令
  • 原文地址:https://www.cnblogs.com/xuejietong/p/8902082.html
Copyright © 2011-2022 走看看