如何将 PHP GD 生成的图像转换为 PDF

发布于 2024-12-05 04:22:27 字数 77 浏览 1 评论 0原文

我们的网站有一个由 PHP GD 创建的认证图像,我可以打印并在网页上观看。但我无法将其制作为可下载的 PDF 文件。我有办法做到这一点吗?

our website has a certification image created by PHP GD, and I can print and watch it on a web page. But I couldn't make it a downloadable PDF file. Is there a way I can do that?

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

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

发布评论

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

评论(2

秋意浓 2024-12-12 04:22:27

您可以先将图像保存在某处,然后使用 FPDF 库将其写入 PDF 文件

You can first save the image somewhere and then use the FPDF lib to write it in a PDF file

美人骨 2024-12-12 04:22:27

你可以使用 imagick 来做到这一点..
如果你的服务器配置正确,下面的命令就可以解决问题 - 安装了 Imagick、安装了 GhostScript、允许 php 执行 shell 命令等

 shell_exec('convert /path/to/input.png /path/to/output.pdf')

you could use imagick to do this..
the below command does the trick if your server is properly configured - Imagick is installed, GhostScript is installed, php is allowed to execute shell commands, etc

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