How can I create a gif from the linux terminal?

1

I found the need to create an animated with a gif and after looking at different sites I found a command that is very good without needing to install tools only with the linux ternimal.

    
asked by Leonardo Pineda 26.09.2018 в 04:31
source

1 answer

2

This is a basic command just open the terminal and execute this:

~$ convert -delay 25 1.png 2.png 3.png 4.png 5.png 6.png 7.png 8.png 9.png 10.png -loop 0 animacion.gif

I share it with anyone interested in using it or sharing other ways to create gifs.

    
answered by 26.09.2018 в 04:31