compare,convert,identify,import,magick,mogrify,montage: update page (#10850)

This commit is contained in:
Lena
2023-10-05 08:52:40 +02:00
committed by GitHub
parent 06af42cd0f
commit 1bec8f7247
7 changed files with 48 additions and 45 deletions

View File

@@ -1,25 +1,25 @@
# montage
> ImageMagick image montage tool.
> Tiles images into a customisable grid.
> Tiles images into a customizable grid.
> Part of ImageMagick.
> More information: <https://imagemagick.org/script/montage.php>.
- Tile images into a grid, automatically resizing images larger than the grid cell size:
`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} montage.jpg`
`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 {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 montage.jpg`
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} {{path/to/montage.jpg}}`
- Set the grid cell size and resize images to fit it before tiling:
`montage {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry 640x480+0+0 montage.jpg`
`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 {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 -tile 2x3 montage_%d.jpg`
`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 {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 -resize 640x480^ -gravity center -crop 640x480+0+0 montage.jpg`
`montage {{path/to/image1.jpg path/to/image2.jpg ...}} -geometry {{+0+0}} -resize {{640x480^}} -gravity {{center}} -crop {{640x480+0+0}} {{path/to/montage.jpg}}`