php – Imagemagick动画gif大小优化

前端之家收集整理的这篇文章主要介绍了php – Imagemagick动画gif大小优化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用此代码来调整大小并保存动画gif(PHP):
system("convert *originalfile* -resize *size* -coalesce *newfile*);

完成后,文件大小非常大.通常比原来大!我该怎么做才能减小文件大小?

我用convert $completeMiff -dither none -matte -depth 8 -deconstruct -layers optimizePlus -colors 32 $optimizedFile_16,文件变得更大???

添加层优化
system("convert *originalfile* -resize *size* -coalesce -layers optimize *newfile*");

当我遇到这个问题时,这对我来说运作得很好. Looks like there are some more advanced options discussed here as well

原文链接:https://www.f2er.com/php/134122.html

猜你在找的PHP相关文章