LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

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
Create montage with title and shadow
$ magick montage -title "[My Gallery]" -shadow [*.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.
-shadow
Add soft shadow beneath each thumbnail.
-title string
Title for the montage image.
-font name
Font for labels and title.
-pointsize value
Font size for labels and title.
-mode type
Framing style: Frame, Unframe, or Concatenate.

SEE ALSO

Copied to clipboard
Kai