So this is some theory here.
I want to lay out some pictures I have (lets say for this example: 10 pictures that are in size of 640x1136) on a canvas.
I want them to be put side by side if I would define the canvas 6400x1136 and for example if I went ahead and used 640x1136 as canvas size it should simply
paste the pictures under each other.
Thanks in advance for suggestions.
(Bonus kudos for whomever can integrade a for (*.filetype) inside the command as this would make the command easier.
Append multiple images on canvas
Append multiple images on canvas
Version: ImageMagick-7.0.7-28-Q16-x64-static http://www.imagemagick.org
Copyright: Copyright (C) 1999-2018 ImageMagick Studio LLC
Copyright: Copyright (C) 1999-2018 ImageMagick Studio LLC
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Append multiple images on canvas
"+append" will put images side by side. "-composite" will stack them on top of each other.
See:
http://www.imagemagick.org/script/comma ... php#append
http://www.imagemagick.org/script/comma ... #composite
etc.
See:
http://www.imagemagick.org/script/comma ... php#append
http://www.imagemagick.org/script/comma ... #composite
etc.
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Append multiple images on canvas
convert *.jpg -append result
or
convert *.jpg +append result
Depending upon whether arranged vertically or horizontally
see
http://www.imagemagick.org/Usage/layers/#append
or
convert *.jpg +append result
Depending upon whether arranged vertically or horizontally
see
http://www.imagemagick.org/Usage/layers/#append
Re: Append multiple images on canvas
is it possible to define a canvas for stacking ?
so it will stop and continue stacking like this:
HHHHHH
HHH
so it will stop and continue stacking like this:
HHHHHH
HHH
Version: ImageMagick-7.0.7-28-Q16-x64-static http://www.imagemagick.org
Copyright: Copyright (C) 1999-2018 ImageMagick Studio LLC
Copyright: Copyright (C) 1999-2018 ImageMagick Studio LLC
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Append multiple images on canvas
see montage
http://www.imagemagick.org/Usage/montage/
but you need to tell it how many tiles in a row (or column)
http://www.imagemagick.org/Usage/montage/
but you need to tell it how many tiles in a row (or column)
Code: Select all
montage *.jpg -tile 6x -geometry +0+0 result