I'm trying to resize and optimize a gif. I've finally managed to get some good results but I'm forced to use the following code in php (after the Imagick resizing etc) to get a reasonably sized file, without this its about 3x the original file size.
Code: Select all
exec("convert img.gif -fuzz 3% -layers Optimize img.gif");
Missing fuzz?
Thanks