Need to merge some image bands.
December 21, 2010 3:13 PM   Subscribe

Very basic image merging program for windows?

I don't need an intelligent panorama stitcher, just some simple tool to take a bunch of horizontal image bands, with the same x dimension, and glue them together into a large vertical panel. Command line or batch mode preferred.

I'd write one in C++, but I'm away on a Vista machine, right out of the box, and need to stack these up ASAP.
posted by StickyCarpet to Computers & Internet (5 answers total) 2 users marked this as a favorite
 
The ImageMagick command montage should do what you want.
posted by russilwvong at 3:22 PM on December 21, 2010 [2 favorites]


Windows Live Photo Gallery (and possibly the Photo Gallery that comes with Vista) has panorama stitching built-in.
posted by ArgentCorvid at 3:39 PM on December 21, 2010


The ImageMagick command montage should do what you want

The convert command with the -append option will also work, e.g.:

$ convert {listOfImageFilenames} -append verticallyStitchedImageFilename.extension

If you ever need left-to-right stitching, use +append, instead.
posted by Blazecock Pileon at 4:19 PM on December 21, 2010 [1 favorite]


I think ImageMagick is the tool for you.

If you want a cheapo (Free!) Photoshop Lite to do this via a GUI you can grab Paint.Net
posted by bitdamaged at 5:46 PM on December 21, 2010


oh jeez. you don't need panorama stitching. sorry.
posted by ArgentCorvid at 6:31 PM on December 21, 2010


« Older My Mac Mini flashes a screen on boot, then goes to...   |   Choose any 3. Newer »
This thread is closed to new comments.