Created
April 14, 2016 09:30
-
-
Save alepez/724cc65cdc5f472ea2e5485832baa663 to your computer and use it in GitHub Desktop.
images before sprite matrix
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
convert all images to a fixed width, expanding the trasparent background. useful to create sprites | |
for i in ../*.png; do convert $i -gravity NorthWest -background transparent -extent 200x150 $( basename $i ); done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment