使用 imagick 将多个图像转换为视频的 PHP 脚本

发布于 2024-10-19 06:30:13 字数 209 浏览 3 评论 0原文

我发现这个命令行使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽袖吟 2024-10-26 06:30:14

考虑到 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/or shell_exec() -- and do not forget to escape your arguments, with escapeshellarg().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文