动态生成可编辑的 PDF
有没有办法以编程方式创建可编辑的 PDF?我所说的可编辑是指您可以单击文本区域并输入您的名字之类的东西。
Is there a way to create an editable PDF programmatically? By editable, I mean you can click in a text area and type in your name, that kind of thing.
I'm using Ruby and have found PrinceXML and Princely to be nice projects. I'm wondering if they could do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Prince 在文档中没有提到表单,并将表单呈现为静态绘图,所以我对此表示怀疑。
pdfTeX 可以使用 hyperref 包来完成此操作。这是一个教程。
示例:
看起来像这样:
(当然,那么你使用的是 TeX 而不是任何报告你喜欢的图书馆我确信还有一个选择。)
Prince doesn't mention forms in the documentation, and renders forms as static drawings, so I doubt it.
pdfTeX can do it with the hyperref package. Here's a tutorial.
Example:
It looks like this:
(Of course, then you're using TeX instead of whatever reports library you like. I'm sure there's an alternative.)