Skip to content

Instantly share code, notes, and snippets.

@kjell
Last active August 29, 2015 14:23
Show Gist options
  • Save kjell/1ae765e7822c4576116e to your computer and use it in GitHub Desktop.
Save kjell/1ae765e7822c4576116e to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# http://nick.onetwenty.org/index.php/2011/01/21/animated-gif-to-sprite-sheet-using-imagemagick/
# http://giphy.com/gifs/cat-driving-b3rbghhoMrhII
file=$1
rows=$2
convert -layers dispose $file tmp.gif
montage tmp.gif -tile x$rows -geometry '1x1+0+0<' -alpha On -background "rgba(0, 0, 0, 0.0)" -quality 100 montaged-$1
rm tmp.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment