tldr/pages/common/gifsicle.md

16 lines
342 B
Markdown
Raw Normal View History

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