From 7ae4dba9bbafdb953b1647486e983bc593a10a4c Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 16 Jun 2026 13:25:35 +0300 Subject: [PATCH] magick: add append example (#22791) Update magick.md --- pages/common/magick.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/magick.md b/pages/common/magick.md index 64c22d0186..825cc9eded 100644 --- a/pages/common/magick.md +++ b/pages/common/magick.md @@ -21,6 +21,10 @@ `magick {{path/to/input_image.png}} -define jpeg:extent={{512kb}} {{path/to/output_image.jpg}}` +- Vertically/horizontally append images and have the empty space be transparent: + +`magick convert -background none {{path/to/image1.png path/to/image2.png ...}} {{-append|+append}} {{path/to/output_image.png}}` + - Create a GIF out of all JPEG images in the current directory: `magick {{*.jpg}} {{path/to/images.gif}}`