Page 1 of 1

catalog generation for various sized images

Posted: 2011-07-04T20:48:08-07:00
by xpt
Hi,

I have a bunch of various sized images that I want to generate catalog files using montage. Previously when I was using montage, I resized all my images to same height, which make it easy to arrange them. Now these images that I now have are small enough that they don't need to be resized, however, they are of same height, but different width.

Any easy way to layout such small images nicely in the catalog file?

Thanks

Re: catalog generation for various sized images

Posted: 2011-07-04T21:32:05-07:00
by fmw42
better to have different heights rather than different widths (though it probably should not matter in montage as montage will space them out into a nice grid format). see http://www.imagemagick.org/Usage/montage/#vid

you can use -geometry to resize the image to the same size (or width) while doing the montage. see http://www.imagemagick.org/Usage/montage/#geometry_size

Re: catalog generation for various sized images

Posted: 2011-07-05T17:29:13-07:00
by xpt
Thanks fmw42,
fmw42 wrote: it probably should not matter in montage as montage will space them out into a nice grid format. . .

you can use -geometry to resize the image to the same size (or width) while doing the montage. . .
I found out that, actually montage automatically resize the images for me while putting them into the grid.

Thanks