Concatenate tiled images into one complete image

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Concatenate tiled images into one complete image

Post by fmw42 »

try using +append for horizontal aligning and -append for vertical aligning

see http://www.imagemagick.org/script/comma ... php#append

e.g.

convert image_00.tif image_01.tif image_02.tif image_03.tif +append image_1.tif

etc

If necessary add -channel rgba -alpha on

see http://www.imagemagick.org/script/comma ... .php#alpha
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Concatenate tiled images into one complete image

Post by anthony »

See IM Examples, Montage, Background and Transparency Handling.

basically set -background none and output to PNG or (if all images are boolean transparency, and low number of colors), GIF.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply