ImageMagick 动画 GIF 无法正常工作

发布于 2025-01-10 23:15:43 字数 510 浏览 0 评论 0原文

我正在尝试上传一些 GIF 动画。有些工作很好,有些则一团糟,如所附示例所示。这是我的基本 ImageMagick 命令:

exec("convertelephant_upload.gif -strip -resize 600x600elephant_output.gif");

有人知道我在这里做错了什么吗?

原始 Gif:

“在此处输入图像描述”"

已处理的 Gif:

在此处输入图像描述

I am trying to upload some animated GIFs. Some work great, others get messed up as seen in the attached example. Here is my basic ImageMagick command:

exec(" convert elephant_upload.gif -strip -resize 600x600 elephant_output.gif ");

Anyone know what im doing wrong here?

Original Gif:

enter image description here

Processed Gif:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

甜尕妞 2025-01-17 23:15:43

在使用命令调整大小之前,您需要在 Imagemagick 中合并帧。所以尝试

convert elephant.gif -strip -coalesce -resize 600x600 -layers optimize x.gif

在此输入图像描述

You need to coalesce your frames in Imagemagick before resizing in your command. So try

convert elephant.gif -strip -coalesce -resize 600x600 -layers optimize x.gif

enter image description here

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