1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 04:35:23 +02:00

convert: add example for creating a gif (#2235)

This commit is contained in:
Shaun Karran 2018-08-08 15:27:08 +10:00 committed by Owen Voke
parent 303fa977ba
commit 87cf0ae9c7

View file

@ -17,3 +17,7 @@
- Horizontally append images:
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
- Create a gif from a series of images with 100ms delay between them:
`convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{100}} {{animation.gif}}`