Manipulating a GIF image
Posted: 2007-10-30T13:44:23-07:00
I have to manipulate GIF images using Magick++. I understand that a GIF image is a multiple frame image, supporting animation. Is a GIF image always multiple frames, even when it is not an animated GIF ? If a GIF image is not always multiple frames, is there a way to determine whether it is a single frame or a multiple frame image using Magick++ ? If a GIF image is just a single frame, can it then be manipulated through the Magick++ Image class rather than through the Magick++ STL classes ?
In one of the Magick++ examples it shows that a GIF image is read as a single frame image using the Image class directly while in another Magick++ example it shows a GIF image being manipulated as a std::list<Image>.
In one of the Magick++ examples it shows that a GIF image is read as a single frame image using the Image class directly while in another Magick++ example it shows a GIF image being manipulated as a std::list<Image>.