Search found 2 matches

by Oink!
2011-02-06T09:02:02-07:00
Forum: Users
Topic: Separation between images with montage command
Replies: 1
Views: 3519

Re: Separation between images with montage command

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
by Oink!
2011-02-06T06:40:00-07:00
Forum: Users
Topic: Separation between images with montage command
Replies: 1
Views: 3519

Separation between images with montage command

I'm trying to create a composite of two images. The images are: name.png - (101x26 pixels, PNG) http://i.imgur.com/eVYD4.png drawing.png - (327x327 pixels, PNG) http://i.imgur.com/sAI5U.png And the montage I'm using is: montage -background white -tile 1x2 -geometry +0+0 -gravity northeast name.png ...