如何使用 PHP 从图像文件创建 PDF 文档
使用 PHP 应用程序,我必须从一组图像生成单个 PDF 文档。
实现这一目标的最佳方法是什么?我可以使用 TCPDF 库吗?你能给我一些例子吗?
With PHP application, I have to generate single PDF documents, from set of images.
Which is best way to achieve this? Can I use TCPDF library, and can you give me some example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的方法是使用 TCPDF (http://www.tcpdf.org) 并将图像设置为完整背景,如示例 n 所示。 51.
例如:
The easiest way is to use TCPDF (http://www.tcpdf.org) and set the images as full background as on the example n. 51.
For example:
您可以使用 dompdf。您可以在 此链接
you can use dompdf.You can find a copy of the original documentation at this link
我不知道你的要求,但 ImageMagick 可能可以做到这一点。我相信他们还有一个可用于所有图像操作/转换功能的 php 包装器。
I don't know your requirements but ImageMagick could probably do the trick. I believe that they also have a php wrapper available for all the image manipulation/conversion functions.