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?".
Oink!
Posts: 2 Joined: 2011-02-06T06:31:20-07:00
Authentication code: 8675308
Post
by Oink! » 2011-02-06T06:40:00-07:00
I'm trying to create a composite of two images.
The images are:
name.png - (101x26 pixels, PNG)
drawing.png - (327x327 pixels, PNG)
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
Oink!
Posts: 2 Joined: 2011-02-06T06:31:20-07:00
Authentication code: 8675308
Post
by Oink! » 2011-02-06T09:02:02-07:00
Solved my problem using
convert :
Code: Select all
convert.exe name.png drawing.png -background white -gravity northwest -append new_output.png
Result,
new_output.png :