1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 09:38:01 +01:00
tldr/pages/common/gifsicle.md

16 lines
342 B
Markdown
Raw Normal View History

# gifsicle
> Create gifs
2014-02-20 13:01:42 +01:00
- Making a GIF animation with gifsicle
2014-02-20 13:01:42 +01:00
`gifsicle --delay={{10}} --loop *.gif > {{anim.gif}}`
2014-02-20 13:01:42 +01:00
- Extracting frames from an animation
2014-02-20 13:01:42 +01:00
`gifsicle {{anim.gif}} '#0' > {{firstframe.gif}}`
2014-02-20 13:01:42 +01:00
- You can also edit animations by replacing, deleting, or inserting frames
2014-02-20 13:01:42 +01:00
`gifsicle -b {{anim.gif}} --replace '#0' {{new.gif}}`