Code: Select all
convert moving_hole.gif -layers OptimizePlus moving_hole_oplus.gif
on the image moving_hole.gif, the image is here:
http://www.imagemagick.org/Usage/anim_o ... g_hole.gif
no optimization is produced.
The following code doesn't seem to be working also:
Code: Select all
convert moving_hole.gif \( -clone 0--1 -set delay 0 \) \
+delete -insert 2 -insert 1 -insert 0 \
-layers OptimizeFrame moving_hole_double.gif
Code: Select all
convert moving_hole.gif \( -clone 0--1 -set delay 0 \) \
+delete -insert 2 -insert 1 -insert 0 \
-layers Optimize moving_hole_double.gif
http://www.imagemagick.org/Usage/anim_opt/
Am I missing some kind of configuration?