当前位置:   article > 正文

C#使用iTextSharp处理PDF文档_c# itextsharp 打开pdf

c# itextsharp 打开pdf
  1. PdfReader reader = new PdfReader(@"F:\最后格式.pdf");//输入的PDF文件
  2. PdfStamper pdfStamper = new PdfStamper(reader, new FileStream(@"F:\最后格式1.pdf", FileMode.Create));//输出的PDF文件
  3. BaseFont bf = BaseFont.CreateFont(@"C:\Windows\Fonts\simsun.ttc,1", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
  4. //表单域操作
  5. //设置内容(先设置textfont 然后添加内容
  6. AcroFields coderBlogForm = pdfStamper.AcroFields;
  7. DataTable da = SQL.FindFirst("4536");
  8. coderBlogForm.SetFieldProperty("untitled1", "textfont", bf, null);
  9. coderBlogForm.SetField("untitled1", da.Rows[0]["成果名称"].ToString());//为表单域添加字符串
  10. coderBlogForm.SetFieldProperty("untitled3", "textfont", bf, null);
  11. coderBlogForm.SetField("untitled3", da.Rows[0]["申报学科"].ToString());

推荐一个网站   www.pdfescape.com  这个网站是在线处理PDF文档的,可以为PDF文档添加域,然后将PDF制作成模板使用代码填充

 

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/1019014
推荐阅读
  

闽ICP备14008679号