How to concatenate 2 GIFs?

  • Thread starter Thread starter Scirious
  • Start date Start date
S

Scirious

People, I have to different animated gifs. How do I make them only one gif?

TIA,
Scirious.
 
If you are dealing with animated gifs and you want to add the frames from the
second one at the end of the frames in the first one, you need to find some
code that will let you extract the frames. Then you create a new one and add
in all the frames. Sounds simple, doesn't it?
There's code around to do this, but I can't remember where I saw it.
Animated Gifs are passe anyway IMHO.
Peter
 
Actually, I don't really need to joint the gifs, but I need to show them
consecutively in an order that is chosen at runtime. Do you know another
way to d it?
 
How about just using 2 image controls, positioned on top of each other with
both of thier visible properties seet to false? Then, as you know which you
wish to see first, you set its visible property to true.
 
The thing is that each GIF has a different duration and I don't want GIF to
repeat more than once and I the other to be finished before it's end.
 
Back
Top