如何创建 TIFF 文件?
如何在 PHP 中创建 TIFF 文件?
我想创建一个 TIFF 文件并传真它。 我知道如何传真,但不知道如何创建 TIFF 文件。
How to create a TIFF file in PHP?
I want create a TIFF file and fax it.
I know how to fax it but I don`t know how to create a TIFF file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,ImageMagick。不过,不要指望尝试使用 PHP 扩展,您将针对
convert
命令创建 shell 命令。很简单:
希望有帮助。
Yes, ImageMagick. Don't count on trying to use the PHP extension for it though, you're going to be making shell commands to the
convert
command.It's as simple as:
Hope that helps.
ImageMagick 是解决方案。
ImageMagick is the solution.