Create Animated GIF [SOLVED]
Forum rules
Before you post please read how to get help
Before you post please read how to get help
Create Animated GIF [SOLVED]
I need to create an animated image file that cycles through two or three images in a closed loop. What software can I use for this?
I have Linux Mint 18.3 Cinnamon 64-bit.
Thanks for any direction on this.
I have Linux Mint 18.3 Cinnamon 64-bit.
Thanks for any direction on this.
Last edited by rgand on Fri Jun 21, 2019 12:56 pm, edited 1 time in total.
Smile, it makes people wonder what you've been up to.
Re: Create Animated GIF
Gimp can do this. Here's a tutorial.

If your issue is solved, kindly indicate that by editing the first post in the topic, and adding [SOLVED] to the title. Thanks!
Re: Create Animated GIF
That did it! Thanks so much.
Smile, it makes people wonder what you've been up to.
Re: Create Animated GIF [SOLVED]
Glad I could help!

If your issue is solved, kindly indicate that by editing the first post in the topic, and adding [SOLVED] to the title. Thanks!
Re: Create Animated GIF [SOLVED]
GIMP is how I created my current animated avatar, and is likely how I will do the next one I'll eventually make.
Zen Buddhism: The Journey Is The Reward
Realist: The Gurney Is The Reward
Remember to mark your fixed problem [SOLVED].
“They said my computer wasn't strong enough for Windows 10, so I had to get one with more strongerness.”
— Overheard random customer
Realist: The Gurney Is The Reward
Remember to mark your fixed problem [SOLVED].
“They said my computer wasn't strong enough for Windows 10, so I had to get one with more strongerness.”
— Overheard random customer
Re: Create Animated GIF [SOLVED]
Thanks. It's nice to know GIMP can do complex ones.
Smile, it makes people wonder what you've been up to.
Re: Create Animated GIF [SOLVED]
You should also be able to do this directly from the command line.
Place all the images into a folder and run something like:
-delay will be the delay between frames in milliseconds.
-loop 0 will determine how many times it loops (0 for continuous)
And then obviously change *.jpg to whatever format your source images are in.
And if you are trying to make an animated gif from a video file you can use ffmpeg.
Place all the images into a folder and run something like:
Code: Select all
convert -delay 20 -loop 0 *.jpg animated.gif
-loop 0 will determine how many times it loops (0 for continuous)
And then obviously change *.jpg to whatever format your source images are in.
And if you are trying to make an animated gif from a video file you can use ffmpeg.
Re: Create Animated GIF [SOLVED]
Thanks for that. It's nice to know another way to get to the destination.
Smile, it makes people wonder what you've been up to.