LinuxCommandLibrary

magick-montage

creates composite images from multiple images arranged in a grid

TLDR

Create image montage

$ magick montage [*.jpg] [output.png]
copy
Set tile layout
$ magick montage -tile [3x3] [*.jpg] [output.png]
copy
Set thumbnail size
$ magick montage -geometry [200x200+5+5] [*.jpg] [output.png]
copy
Add labels
$ magick montage -label '%f' [*.jpg] [output.png]
copy
Set background color
$ magick montage -background white [*.jpg] [output.png]
copy

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

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community