montage

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
kaushalshriyan

montage

Post by kaushalshriyan »

Hi,

montage +frame +shadow +label -tile 1x5 -geometry 481x277+0+0 first.png second.png third.png fourth.png fifth.png sixth.png join.png
creates join-0.png and join-1.png

is there a way to create it as one image join.png

Please suggest/guide.

Thanks,

Kaushal
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: montage

Post by snibgo »

You have 6 input files, but specify the tiling as 1x5. What do you really want in the output?
snibgo's IM pages: im.snibgo.com
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: montage

Post by fmw42 »

As snibgo says,

change -tile 1x5 to -tile 1x6
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: montage

Post by anthony »

fmw42 wrote:As snibgo says,

change -tile 1x5 to -tile 1x6
Or to ensure you ALWAYS get one 'page' of tiles. leave one of the numbers out (or set to zero)
For example -tile 1x for a single column.

See IM examples, Montage, tiling layout control...
http://www.imagemagick.org/Usage/montage/#tile
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply