The MagickWand interface is a new high-level C API interface to ImageMagick core methods. We discourage the use of the core methods and encourage the use of this API instead. Post MagickWand questions, bug reports, and suggestions to this forum.
I want to resize a GIF image file use the code as follow. After resizing it, it's still a gif imgage file indeed, but it become static.
It seems only the first frame has been decoded . Is there something wrong in my code?
NOTE this is not normally the forum I would write in, but I know about this.
While the command line will loop though the current image sequence resizing all images. Other API's do not. You will need to loop though reach image and resize it.
WARNING: GIF animation sequences need to be coalesced (layer method) into proper images without optimization before resizing. You can optimize (also a layer method) the animation after ward for frame and transparency optimizations again afterward.