Imagemagick 动画 gif 大小优化

发布于 2024-10-29 19:01:22 字数 328 浏览 1 评论 0原文

我使用此代码来调整大小并保存动画 gif (php):

system("convert *originalfile* -resize *size* -coalesce *newfile*); 

完成后,文件大小相当大。通常甚至比原来的还要大!我可以做什么来减小文件大小?

我使用 convert $completeMiff -dither none -matte -depth 8 -deconstruct -layers optimizedPlus -colors 32 $optimizedFile_16 并且文件变得更大???

I am use this code to resize and save a animated gif (php):

system("convert *originalfile* -resize *size* -coalesce *newfile*); 

Once done the filesize is quite large. Usually larger than the original even! What can I do to reduce the file size?

I used convert $completeMiff -dither none -matte -depth 8 -deconstruct -layers optimizePlus -colors 32 $optimizedFile_16 and the file gets even bigger???

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

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

发布评论

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

评论(1

叹沉浮 2024-11-05 19:01:22

添加 -layers optimization

system("convert *originalfile* -resize *size* -coalesce -layers optimize *newfile*"); 

当我遇到这个问题时,这对我来说效果很好。 似乎讨论了一些更高级的选项这里也有

Add -layers optimize

system("convert *originalfile* -resize *size* -coalesce -layers optimize *newfile*"); 

That worked well enough for me, when I faced this issue. Looks like there are some more advanced options discussed here as well

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