From a3f0d36a80501bcbfd38fea37fd0e196a9d980e6 Mon Sep 17 00:00:00 2001 From: 85pando <85pando@googlemail.com> Date: Thu, 31 Dec 2015 11:54:03 +0100 Subject: [PATCH] Fix another much needed imagemagick command. --- pages/common/convert.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/convert.md b/pages/common/convert.md index 8c4e9f461..e4b2c79ed 100644 --- a/pages/common/convert.md +++ b/pages/common/convert.md @@ -10,6 +10,10 @@ `convert {{image.png}} -resize 50% {{image2.png}}` +- Scale an image keeping the original aspect ratio to a maximum dimension of 640x480. + +`convert {{image.png}} -resize 640x480 {{image2.png}}` + - Horizontally append images `convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`