Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I've spent the best part of a day trying to find an answer to this, basically I would like to make an animated Gif which loops between these two images, can anyone help?
You will need to append one image into the wand of the other image and set the delay, disposal and looping metadata as appropriate.
A good start is understanding the GIF animation handling which IM Examples, Animation Basics goes into, though only using the command line version of IM. However everything the command line can do, the various API's should also be able to do.
NOTE you should be able to do this without using the command line version, though thanks to IM examples there is a lot more examples in using IM via the command line version, weather it run from PHP or from Shell.
NOTE; PHP actually runs commands through Shell as well making three API layers to deal with. I have not seen a simple 'exec()' type system call in the PHP api to allow you to avoid having a IM command parsed by the shell as well (changling the initial quoting and command argument seperation). This is a real security problem for PHP!