Created
October 20, 2014 18:40
-
-
Save SamWhited/6c1902b9379f0737d1e7 to your computer and use it in GitHub Desktop.
Script to render a montage of many images with an overlay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Requires: ImageMagick | |
# Usage: | |
# rendermontage.sh thumbsize overlayimage outputimage | |
# | |
montage -geometry $1x$1>+0+0 *.{jpeg,jpg,png} $3 | |
composite -gravity center -background none $2 $3 $3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment