PDF 文件中的元数据

发布于 2024-07-17 17:11:41 字数 91 浏览 2 评论 0原文

我希望能够在 PDF 中存储一些特定于插件的数据,以便在加载该 PDF 时可以读取它,而用户无需看到此元数据。

如何将此元数据放入 PDF 文件中?

I want to be able to store some plugin-specific data in a PDF so that I can read it back when that PDF is loaded back, without this metadata being visible to the user.

How can I put this metadata into the PDF File?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

站稳脚跟 2024-07-24 17:11:41

PDF 支持 XMP 元数据。 您应该将插件特定信息作为有效负载附加到 XMP 部分中。

PDF supports XMP metadata. You should append your plug-in specific information as a payload in the XMP portion.

百思不得你姐 2024-07-24 17:11:41

根据您生成和阅读 PDF 的方式,您可以使用 pdftk 编辑元数据。 您可以将不可见标签添加到 PDF,方法是将其添加为具有键和值的元数据属性,方法是使用 pdftk dump_data 将所有元数据写入文本文件,然后将新键和值附加到文本文件,然后使用 pdftk update_info放回所有元数据,包括新的键值对。

Depending on how you are generating and reading your PDFs you can use pdftk to edit your metadata. You can add an invisable tag to the PDF by adding it as a metadata property with a key and value by using pdftk dump_data to write all metadata to a text file, then append the new key and value to the text file, then use pdftk update_info to put back all the metadata, including the new key value pair.

你是我的挚爱i 2024-07-24 17:11:41

最简单的方法是将信息作为文本附加到 pdf 文件的末尾。

The easiest way to do that is simply append the information as text to the end of the pdf file.

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