imagemagick: update pages (#12874)

* compare, convert, identify, import, mogrify, montage:
   move pages to subcommands of `magick`, create alias pages

* convert: add deprecation notice

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Lena
2024-06-03 13:40:59 +02:00
committed by GitHub
parent 50937f1c75
commit 80cc7a5af3
13 changed files with 158 additions and 112 deletions

View File

@@ -1,25 +1,7 @@
# montage
> Tiles images into a customizable grid.
> Part of ImageMagick.
> More information: <https://imagemagick.org/script/montage.php>.
> This command is an alias of `magick montage`.
- Tile images into a grid, automatically resizing images larger than the grid cell size:
- View documentation for the original command:
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} {{path/to/montage.jpg}}`
- Tile images into a grid, automatically calculating the grid cell size from the largest image:
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} {{path/to/montage.jpg}}`
- Specify the grid cell size and resize images to fit it before tiling:
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{640x480+0+0}} {{path/to/montage.jpg}}`
- Limit the number of rows and columns in the grid, causing input images to overflow into multiple output montages:
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} -tile {{2x3}} {{montage_%d.jpg}}`
- Resize and crop images to fill their grid cells before tiling:
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} -resize {{640x480^}} -gravity {{center}} -crop {{640x480+0+0}} {{path/to/montage.jpg}}`
`tldr magick montage`