magick-convert: add "no background" to append example (#16898)

This commit is contained in:
Managor
2025-06-29 22:06:06 +03:00
committed by GitHub
parent 6c792bd01b
commit cecbbcc4e9
+2 -2
View File
@@ -20,9 +20,9 @@
`magick convert {{path/to/input_image.png}} -define jpeg:extent=512kb {{path/to/output_image.jpg}}`
- Vertically/horizontally append images:
- Vertically/horizontally append images and have the empty space be transparent:
`magick convert {{path/to/image1.png path/to/image2.png ...}} {{-append|+append}} {{path/to/output_image.png}}`
`magick convert -background none {{path/to/image1.png path/to/image2.png ...}} {{-append|+append}} {{path/to/output_image.png}}`
- Create a GIF from a series of images with 100ms delay between them: