可以从 .fdf 填充的表单中使用 .net 保存 pdf

发布于 2024-08-30 20:43:44 字数 267 浏览 4 评论 0原文

我有一个过程以 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-09-06 20:43:44

我会仔细研究修改创建 .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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文