How to put several images on a frame when using "-dispose" ?
Posted: 2010-05-23T19:24:41-07:00
For example, using this command:
I can make a simple animation, which displays the four BMP files one by one.
Here is the question, what command should I use to display two or more images simultaneously on a single frame?
That is to say, I want to let the animation show one.bmp and two.bmp together, then three.bmp and four.bmp on the next frame.
Thanks a lot!
Code: Select all
convert \
-delay 1x2 -dispose none -size 640x360 \
xc:SkyBlue +antialias \
-fill DodgerBlue -draw 'circle 50,50 15,25' \
-dispose previous \
-page +0+0 one.bmp \
-page +300+300 two.bmp \
-page +50+50 three.bmp \
-page +60+60 four.bmp \
-loop 0 \
result.gif
Here is the question, what command should I use to display two or more images simultaneously on a single frame?
That is to say, I want to let the animation show one.bmp and two.bmp together, then three.bmp and four.bmp on the next frame.
Thanks a lot!