How can I combine two animated GIF images into one?

I have two animated .gif files. Is it possible to combine these two .gif into one .gif?

1

2 Answers

You can use imagemagick for this:

convert animated1.gif animated2.gif combined.gif
3

You can use gifcomb

 A program to combine 2 GIF images of exactly the same size into one. The color maps are merged, but the result may not exceed 256 colors. A boolean mask GIF file can be used to set which pixel from two images to use at each location. Otherwise any background color from first image is converted to second image color at that point. Only the first image of each file is combined; again, all files' first images must be of exactly the same size.

It is in the repos for 12.04 >> 16.04

sudo apt-get install gifcomb

Here is the manpage

You Might Also Like