imagemagick Getting started with imagemagick Create an animated gif

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

Starting from a sequence of static images (for example called frame01.jpg, frame02.jpg and so on) an animated gif can be created using the following command:

magick -delay 10 -loop 0 frame*.jpg animation.gif
  • -delay 10 sets the interval between the frames to 0.1 seconds

  • -loop 0 creates an infinite looping animation



Got any imagemagick Question?