通过 PHP 将元数据添加到 PDF

发布于 2024-09-06 15:33:36 字数 241 浏览 4 评论 0原文

我需要在 PHP (5.3) 中下载时使用自定义元数据字段来扩充 PDF。

我一直在查看 pdftk 库,但我不知道如何获得PHP 在我们的 (Ubuntu) Web 服务器上与其交互。

已弃用的 PDFInfo 库似乎是一个死胡同。

有更简单/更容易/更好的解决方案吗?

谢谢

I need to augment a PDF with a custom metadata field on download in PHP (5.3).

I have been looking at the pdftk library, but I can't get my head around how I would get PHP to interface with it on our (Ubuntu) web server.

The deprecated PDFInfo library seems like a dead end.

Is there a simpler/easier/better solution?

Thanks

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

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

发布评论

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

评论(1

将军与妓 2024-09-13 15:33:36

您可以使用 Zend_Pdf。它来自 Zend Framework,但可以用作独立组件。添加元数据非常简单:

  $pdf = Zend_Pdf::load($pdfPath);
  $pdf->properties['Title'] = 'New Title.';
  $pdf->save($pdfPath);

You could use Zend_Pdf. It's from the Zend Framework but can be used as a standalone component. Adding metadata is as easy as:

  $pdf = Zend_Pdf::load($pdfPath);
  $pdf->properties['Title'] = 'New Title.';
  $pdf->save($pdfPath);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文