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?".
This makes an image that says TEST on lightblue with a glitter effect but the problem is that it's not animating. I see only what appears to be the first frame of redglitter.gif. I've tried adding -loop 0 but that doesn't work.
I feel I am really close to this but can't get it. I know how to do it using the online imagemagick tool but i want to be able to do it through the command line. Any help would be much appreciated.
composite -compose Dst_in -gravity center wordtrans.gif image.gif -matte out.gif
This will take my wordtrans.gif image which has a transparent background and takes image.gif to fill in the transparent parts. This is almost exactly what i want except for when i try to use an animated gif, glitter, it makes everything a solid block color. It's as if it just can't handle the animation.
I figured the animation was the cause of the problem. After breaking up the animation into its sepcific frames, and "composite-ing" them one by one, i got it to work.