Separation between images with montage command

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
Oink!
Posts: 2
Joined: 2011-02-06T06:31:20-07:00
Authentication code: 8675308

Separation between images with montage command

Post 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
Oink!
Posts: 2
Joined: 2011-02-06T06:31:20-07:00
Authentication code: 8675308

Re: Separation between images with montage command

Post 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
Post Reply