可以从 .fdf 填充的表单中使用 .net 保存 pdf
我有一个过程以 .fdf 文件的形式创建表单数据,然后引用作为其“父”的 .pdf 文档。
是否可以使用任何 .NET 进程保存该 .pdf 文件(填充来自 .fdf 的数据)?
我需要这个,因为我需要通过电子邮件发送完整填充的 .pdf 文档。
我刚刚发送了带有完全合格的 pdf 链接的 .fdfs,但有些人遇到了问题,如果我能做到的话,我宁愿只发送完整的 pdf。
仅供参考,如果重要的话,我的服务器确实安装了 Acrobat 的许可副本......
I have a process that creates form data in the form of an .fdf file that then has a reference to the .pdf document that is its "parent".
is it possible with any .NET process to save that .pdf file (populated with the data that came in from the .fdf)?
I need this because I need to email the fully populated .pdf documents out.
I've been just sending the .fdfs with fully qualified links to the pdfs, but some people are having problems with it and I'd rather just go full-blown pdf if I can do it.
FYI, my server does have a licensed copy of Acrobat installed if that matters....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会仔细研究修改创建 .FDF 文件的过程,以改为使用 iTextSharp 直接生成 PDF。
以下是一些有关使用 iTextSharp 的资源(当然还有更多):
iTextSharp 教程
mikesdotnetting.com
iTextSharp 是开源的,您可能根本不需要使用 .FDF 文件。
您还可以通过按名称显式引用字段,使用 iTextSharp 填写预先存在的表单。下面是一个示例:
使用 Visual Basic 和 iTextSharp DLL 以编程方式完成 PDF 表单字段
这是VB.NET
I would look closely at modifying your process that creates .FDF files to instead generate PDFs directly using iTextSharp.
Here are a couple resources on using iTextSharp (there are tons more of course):
iTextSharp Tutorial
mikesdotnetting.com
iTextSharp is open source and you could potentially eliminate the need to use .FDF files at all.
You can also fill out preexisting forms using iTextSharp through explicitly referencing fields by name. Here's a sample:
Programmatically Complete PDF Form Fields using Visual Basic and the iTextSharp DLL
It's VB.NET