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???