magick: add percentage resize example (#18189)

Update magick.md
This commit is contained in:
Managor
2025-09-27 03:38:32 +03:00
committed by GitHub
parent 168ce564c9
commit 69712fec70
+4
View File
@@ -13,6 +13,10 @@
`magick {{path/to/input_image.jpg}} -resize {{100x100}} {{path/to/output_image.jpg}}`
- Resize an image by a percentage:
`magick {{path/to/input_image.png}} -resize {{50}}% {{path/to/output_image.png}}`
- Create a GIF out of all JPEG images in the current directory:
`magick {{*.jpg}} {{path/to/images.gif}}`