如何将 PHP GD 生成的图像转换为 PDF
我们的网站有一个由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以先将图像保存在某处,然后使用 FPDF 库将其写入 PDF 文件
You can first save the image somewhere and then use the FPDF lib to write it in a PDF file
你可以使用 imagick 来做到这一点..
如果你的服务器配置正确,下面的命令就可以解决问题 - 安装了 Imagick、安装了 GhostScript、允许 php 执行 shell 命令等
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