From 87cf0ae9c7b33e77c47007e15753d707cdc6bad3 Mon Sep 17 00:00:00 2001 From: Shaun Karran Date: Wed, 8 Aug 2018 15:27:08 +1000 Subject: [PATCH] convert: add example for creating a gif (#2235) --- pages/common/convert.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/convert.md b/pages/common/convert.md index 99e860b5a8..95748cfdf3 100644 --- a/pages/common/convert.md +++ b/pages/common/convert.md @@ -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}}`