1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 03:55:31 +02:00

convert: add vertical append example (#3581)

This commit is contained in:
Jason Ge 2019-11-20 01:07:11 +08:00 committed by Starbeamrainbowlabs
parent b95ec365a5
commit b777d86b57

View file

@ -19,6 +19,10 @@
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
- Vertically 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}}`