web-dev-qa-db-fra.com

Comment combiner deux images GIF animées en une seule?

J'ai deux fichiers .gif animés. Est-il possible de combiner ces deux .gif en un .gif?

1
orschiro

Vous pouvez utiliser 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.

C'est dans les pensions pour le 12.04 >> 16.04

Sudo apt-get install gifcomb

Voici la page de manuel

1
Mark Kirby

Vous pouvez utiliser imagemagick pour cela:

convert animated1.gif animated2.gif combined.gif
0
Mike Bounds