PDF 文件中的元数据
我希望能够在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
PDF 支持 XMP 元数据。 您应该将插件特定信息作为有效负载附加到 XMP 部分中。
PDF supports XMP metadata. You should append your plug-in specific information as a payload in the XMP portion.
根据您生成和阅读 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.
最简单的方法是将信息作为文本附加到 pdf 文件的末尾。
The easiest way to do that is simply append the information as text to the end of the pdf file.