使用 iTextSharp 生成 PDF 表单
如何在 iTextSharp 中创建可填写的 PDF 文件。截至目前,我可以创建一个包含文本的 pdf 文件,但是我在创建可填充字段方面遇到了困难。任何帮助或示例代码将不胜感激。
How can i create a fillable PDF file in iTextSharp. As of right now I can create a pdf file with text in it, however I'm struggling in creating fillable fields. Any help or sample code would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
使用 Adobe LiveCycle Designer 等第三方软件制作 pdf 表单比使用 iTextsharp 编码更容易。您只需根据表单的需要放置一些文本框、复选框或单选按钮,设置其字体、字体大小和样式。它的数据类型。
记下所有字段名称(如“TextField1”等)。创建一个新的 Web 表单,其中包含一些向该字段提供数据的文本框。
然后,您可以使用如下代码轻松填写该表格:
It's more easy to make pdf form from third party softwares like Adobe LiveCycle Designer than coding with iTextsharp. You just have to put some textbox, checkbox or radio buttons as required with your form, setting its fonts, font size & its datatype.
Mark down all the field names(like "TextField1" etc). Create a new webform that contains some textboxes which feeds data to that fields.
You can then fill up that form easily with the code like below: