1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 16:26:04 +02:00

Create gifsicle.md

Examples from http://www.lcdf.org/gifsicle/
This commit is contained in:
hugovk 2014-02-18 22:11:24 +02:00
parent 6d7b1dc79a
commit e4f32d0579

15
common/gifsicle.md Normal file
View file

@ -0,0 +1,15 @@
# gifsicle
> Create gifs
- Making a GIF animation with gifsicle is easy:
`gifsicle --delay=10 --loop *.gif > anim.gif`
- Extracting frames from animations is easy too:
`gifsicle anim.gif '#0' > firstframe.gif`
- You can also edit animations by replacing, deleting, or inserting frames:
`gifsicle -b anim.gif --replace '#0' new.gif`