Page 1 of 1

montage with original sizes intact

Posted: 2011-09-30T21:42:45-07:00
by RezaRob
montage makes the original image sizes tiny. I actually want the originals to be "zoomed" even bigger with
high quality smoothing at the same time.
This doesn't work:
# montage -resize 500% ooo-*.gif ooo.gif

I'm on Ubuntu 10.04.

Thanks a lot,
Reza.

Re: montage with original sizes intact

Posted: 2011-10-01T10:06:47-07:00
by fmw42
try


montage -geometry 500x500+2+2% ooo-*.gif ooo.gif


see
http://www.imagemagick.org/Usage/montage/#geometry_size

Re: montage with original sizes intact

Posted: 2011-10-02T19:27:01-07:00
by anthony
The alternative is to turn off the -geometry size (EG; use -geometry +2+2 ) and then use -resize yourself (after reading in the input images). That way you can do further modifications of the images before they are finally montaged.

Note the list of convert options that are simple saved by "montage" to use later, rather than their normal "convert" use.
http://www.imagemagick.org/Usage/montage/#settings

Other than that "montage" should accept all "convert" settings.