称“其他”为“其他”。通过 Imagick 执行 ImageMagick 命令?
我正在使用 Imagick PHP 包装器 ImageMagick。我注意到有些 ImageMagick 命令在 Imagick 包装器中不可用,例如 自动级别
和 标准化
。
我应该如何调用这些?在 Imagick 中找不到任何内容。使用 exec()
或 shell_exec()
通过 shell 直接调用 ImageMagick 命令是否有缺点?
I'm using the Imagick PHP wrapper for ImageMagick. I've noticed there are some ImageMagick commands that are not available in the Imagick wrapper, such as autolevel
and normalize
.
How should I go about calling these? Couldn't find anything in Imagick. Are there disadvantages to calling the ImageMagick commands directly through the shell with exec()
or shell_exec()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用
system()
。由于某种原因,exec()
在我的 MacBook 上不起作用。I recommend using
system()
. For some reason,exec()
doesn't work on my MacBook.