Hello
how do I put two images side by side in the simultaneous imagemagick?
two images animate
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: two images animate
You message is somewhat confusing? Do you want the images side-by-side or as two frames of an animation?puffy wrote:Hello
how do I put two images side by side in the simultaneous imagemagick?
If side-by-side:
convert image1 image2 +append resultimage
if an animation
convert -delay XX image1 image2 -loop 0 result.gif
See
http://www.imagemagick.org/script/comma ... php#append
http://www.imagemagick.org/Usage/layers/#append
http://www.imagemagick.org/Usage/anim_basics/
Re: two images animate
I'ts was animate . I want two images animate side-by-side . Examples:
imagem1_anim.gif imagem_anim.gif resultanim.gif
imagem1_anim.gif imagem_anim.gif resultanim.gif
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: two images animate
Still not sure I understand. Do you want two animations put side-by-side into one animation?
If so, then you need to study the following as I am not an expert on animations. I suspect you have to use -coalesce, then +append on a frame-by-frame basis. The issue is that if you have two animations, they may have different number of frames and different delays. Likewise, but perhaps easier if you just want to combine two animations into one animation where all the frames of the second animation follow those of the first animation. Examples of the latter may be in the second link below?
see
http://www.imagemagick.org/Usage/
http://www.imagemagick.org/Usage/anim_mods/
http://www.imagemagick.org/script/comma ... p#coalesce
If so, then you need to study the following as I am not an expert on animations. I suspect you have to use -coalesce, then +append on a frame-by-frame basis. The issue is that if you have two animations, they may have different number of frames and different delays. Likewise, but perhaps easier if you just want to combine two animations into one animation where all the frames of the second animation follow those of the first animation. Examples of the latter may be in the second link below?
see
http://www.imagemagick.org/Usage/
http://www.imagemagick.org/Usage/anim_mods/
http://www.imagemagick.org/script/comma ... p#coalesce
Re: two images animate
For examples:
composite image -page +19+23 -page +700+30 image1_anim.gif image2_anim.gif resultend.gif.
image1_anim.gif and image2_anim.gif...... have that simultaneously!
I understand?
composite image -page +19+23 -page +700+30 image1_anim.gif image2_anim.gif resultend.gif.
image1_anim.gif and image2_anim.gif...... have that simultaneously!
I understand?
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: two images animate
Difficult unless the two images have the exact same number of frames and timings.
See Animation append, and later sections
http://www.imagemagick.org/Usage/anim_mods/#merging
See Animation append, and later sections
http://www.imagemagick.org/Usage/anim_mods/#merging
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: two images animate
I want 3 images animate at time at 1 image (1 panel). Have how has?
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: two images animate
Your request is still confusing.puffy wrote:I want 3 images animate at time at 1 image (1 panel). Have how has?
Please be clear about exactly what you want!
describe the images or animations
describe the final result wanted
Give (small) examples of input, and is posible the output, is you can.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/