Generate an Image Gallery

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
JZA
Posts: 3
Joined: 2014-10-23T21:50:39-07:00
Authentication code: 6789

Generate an Image Gallery

Post by JZA »

I want to generate an image of screenshots of a video. I am trying to use bash and mplayer. I already know how to generate the snapshot of the movie, my next step is to manipulate these images to thumbnailize it, and then insert them in a grid-like fashion to a background image.

People recomend using montage for that matter. If there is a script that does something along those lines, would be great.

Image
JZA
Posts: 3
Joined: 2014-10-23T21:50:39-07:00
Authentication code: 6789

Re: Generate an Image Gallery

Post by JZA »

Seems convert proved to be the right solution using the vid video indexing and doing:

Code: Select all

convert  'vid:images/*.jpg' my_gallery.png
got what I was looking for.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Generate an Image Gallery

Post by fmw42 »

montage will block them out into any array set you want and space them out. See http://www.imagemagick.org/Usage/montage/
Post Reply