From 55edb28bab7f20c54be973fb5498910094c9ea83 Mon Sep 17 00:00:00 2001 From: Michael Utz Date: Thu, 4 Apr 2019 09:48:37 +0300 Subject: [PATCH] convert: add one-liner for creating solid color images (#2863) --- pages/common/convert.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/convert.md b/pages/common/convert.md index 95748cfdf..1568d6969 100644 --- a/pages/common/convert.md +++ b/pages/common/convert.md @@ -21,3 +21,7 @@ - Create a gif from a series of images with 100ms delay between them: `convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{100}} {{animation.gif}}` + +- Create an image with nothing but a solid background: + +`convert -size {{800x600}} "xc:{{#ff0000}}" {{image.png}}`