使用 imagick 将多个图像转换为视频的 PHP 脚本
我发现这个命令行使用 ImageMagick 将图像转换为视频:
ImageMagick Convert -delay 100 -quality 75 1.jpg 2.jpg movie.mpg
有没有办法在 php 中使用 imagick 执行此操作?我正在尝试找到一种方法在网站上执行此操作。
我的 google-fu 让我失望了,我感谢任何帮助:)
I found this command line that uses ImageMagick to convert images into a video:
ImageMagick convert -delay 100 -quality 75 1.jpg 2.jpg movie.mpg
Is there a way to do this in php with imagick? I am trying to find a way to do this on a website.
My google-fu has failed me and I appreciate any help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑到
convert
是您从命令行使用的可执行程序,最简单的解决方案是从 PHP 脚本中使用它;-)关于这一点,您需要通读系统程序执行部分。
您可能会对
exec()
< /a> 和/或shell_exec()
< /a> -- 并且不要忘记使用escapeshellarg 转义你的参数()
。Considering that
convert
is the executable program you're using from the command-line, the simplest solution would be to use it from your PHP scripts ;-)About that, you'll want to read through the System program execution section of the manual.
You'll probably be especially interested by
exec()
and/orshell_exec()
-- and do not forget to escape your arguments, withescapeshellarg()
.