我使用此代码来调整大小并保存动画gif(PHP):
system("convert *originalfile* -resize *size* -coalesce *newfile*);
完成后,文件大小非常大.通常比原来大!我该怎么做才能减小文件大小?
我用convert $completeMiff -dither none -matte -depth 8 -deconstruct -layers optimizePlus -colors 32 $optimizedFile_16,文件变得更大???
添加层优化
原文链接:https://www.f2er.com/php/134122.htmlsystem("convert *originalfile* -resize *size* -coalesce -layers optimize *newfile*");
当我遇到这个问题时,这对我来说运作得很好. Looks like there are some more advanced options discussed here as well