Skip to content

Instantly share code, notes, and snippets.

@SamWhited
Created October 20, 2014 18:40
Show Gist options
  • Save SamWhited/6c1902b9379f0737d1e7 to your computer and use it in GitHub Desktop.
Save SamWhited/6c1902b9379f0737d1e7 to your computer and use it in GitHub Desktop.
Script to render a montage of many images with an overlay
#!/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