From 937a658309eaa87a3de789c642b42a79d18a42b4 Mon Sep 17 00:00:00 2001 From: Karl Dangerfield <1939781+kadang@users.noreply.github.com> Date: Wed, 4 Oct 2023 18:30:55 +0200 Subject: [PATCH] magick: update resizing example (#10764) * magick: update resizing example Update according to the example on https://imagemagick.org/Usage/resize/ --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/common/magick.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/magick.md b/pages/common/magick.md index 06702e0728..994312a136 100644 --- a/pages/common/magick.md +++ b/pages/common/magick.md @@ -10,7 +10,7 @@ - Resize an image, making a new copy: -`magick convert -resize {{100x100}} {{image.jpg}} {{image.jpg}}` +`magick {{input_image.jpg}} -resize {{100x100}} {{output_image.jpg}}` - Create a GIF using images: