使用 PHP 调整 PDF 限制

发布于 2024-09-08 04:45:32 字数 73 浏览 3 评论 0原文

我有一个用户将 PDF 上传到我的服务器,是否可以通过 PHP 调整 PDF 限制以不允许打印、复制等?

非常感谢。

I have a user uploading a PDF to my server, is it possible to adjust the PDF restrictions via PHP to not allow printing, copying, etc?

Many thanks.

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

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

发布评论

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

评论(1

心头的小情儿 2024-09-15 04:45:39

这将满足您的需求。

http://www.idsecuritysuite.com/blog/密码保护-a-pdf-document-in-php

http://www.setasign.de/products/pdf-php-solutions/fpdi-protection-128/downloads/

或者,您可以在上传后调整 PDF 的权限:

chmod("/dir/file.pdf", 0600);

但是,这将意味着用户无法读取该文件,我认为这不是您想要的效果。

This will meet your needs.

http://www.idsecuritysuite.com/blog/password-protect-a-pdf-document-in-php

http://www.setasign.de/products/pdf-php-solutions/fpdi-protection-128/downloads/

Alternatively you could adjust the permissions of the PDF after upload:

chmod("/dir/file.pdf", 0600);

However this will mean users cannot read the file, which i don't believe is the desired effect your after.

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