如何使用 PHP 中的 ImageMagick 二进制文件?
我在本地使用 ImageMagick 库进行图像编辑。在我的在线共享服务器中,没有安装 ImageMagick,但在请求后,他们在 /usr/local/bin
安装了 ImageMagick 二进制文件,例如 convert
二进制文件在 /usr /local/bin/convert
。
如何在我的脚本中使用这些二进制文件?
I am using locally the ImageMagick library for image editing. In my online shared server there was no ImageMagick installed but after requested, they installed ImageMagick binaries at /usr/local/bin
, e.g. the convert
binary at /usr/local/bin/convert
.
How can I use those binaries in my script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用类似 exec
Use exec like
这些不是“perl 二进制文件”,它们是 C 库和二进制可执行文件。
您需要构建/安装使用它们的 php 模块。
Those aren't "perl binaries", they're the C libraries and binary executables.
You need to build/install the php module that uses them.