Page 1 of 1

Separation between images with montage command

Posted: 2011-02-06T06:40:00-07:00
by Oink!
I'm trying to create a composite of two images.

The images are:

name.png - (101x26 pixels, PNG)
Image

drawing.png - (327x327 pixels, PNG)
Image

And the montage I'm using is:

Code: Select all

montage -background white -tile 1x2 -geometry +0+0 -gravity northeast name.png drawing.png output.png
If I'm specifying -geometry +0+0, Why do I get a separation between the two images?

output.png
Image

Re: Separation between images with montage command

Posted: 2011-02-06T09:02:02-07:00
by Oink!
Solved my problem using convert: :D

Code: Select all

convert.exe name.png drawing.png -background white -gravity northwest -append new_output.png
Result, new_output.png:
Image