Gif animation - Different delay values to each frame?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
agriz
Posts: 237
Joined: 2011-10-01T02:21:30-07:00
Authentication code: 8675308

Gif animation - Different delay values to each frame?

Post by agriz »

I can clone frames in gif animation. But how can i change the delay of each frame?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Gif animation - Different delay values to each frame?

Post by fmw42 »

try

Code: Select all

convert -delay X image1 -delay Y image2 -delay Z image3 -loop 0 animation.gif
where X,Y and Z are different delay times.
agriz
Posts: 237
Joined: 2011-10-01T02:21:30-07:00
Authentication code: 8675308

Re: Gif animation - Different delay values to each frame?

Post by agriz »

Thank you. I will try and tell you sir
Post Reply