magick-montage
creates composite images from multiple images arranged in a grid
TLDR
Create image montage
$ magick montage [*.jpg] [output.png]
Set tile layout$ magick montage -tile [3x3] [*.jpg] [output.png]
Set thumbnail size$ magick montage -geometry [200x200+5+5] [*.jpg] [output.png]
Add labels$ magick montage -label '%f' [*.jpg] [output.png]
Set background color$ magick montage -background white [*.jpg] [output.png]
SYNOPSIS
magick montage [options] images... output
DESCRIPTION
magick montage creates composite images from multiple images arranged in a grid. Part of ImageMagick. Useful for creating contact sheets, galleries, and image previews. Supports labels and frames.
PARAMETERS
-tile geometry
Grid layout (columns x rows).-geometry geometry
Thumbnail size and spacing.-label string
Add label to thumbnails.-background color
Background color.-border geometry
Border around thumbnails.-frame geometry
Frame around thumbnails.
SEE ALSO
magick(1), magick-convert(1)
