Fuzz/Optimize command missing/failing

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
homerjam
Posts: 1
Joined: 2014-03-26T06:47:54-07:00
Authentication code: 6789

Fuzz/Optimize command missing/failing

Post by homerjam »

Hi,

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");
I can't find anyway to replicate this using Imagick itself and I've tried a lot of different combinations.

Missing fuzz?

Thanks
Post Reply