ImageMagick 动画 GIF 无法正常工作
我正在尝试上传一些 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:
Processed Gif:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在使用命令调整大小之前,您需要在 Imagemagick 中合并帧。所以尝试
You need to coalesce your frames in Imagemagick before resizing in your command. So try