montage with original sizes intact

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?".
Post Reply
RezaRob
Posts: 1
Joined: 2011-09-30T21:06:37-07:00
Authentication code: 8675308

montage with original sizes intact

Post 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.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: montage with original sizes intact

Post by fmw42 »

try


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


see
http://www.imagemagick.org/Usage/montage/#geometry_size
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: montage with original sizes intact

Post 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.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply