Created
July 18, 2014 05:31
-
-
Save houkanshan/3ce49414f915df7dd616 to your computer and use it in GitHub Desktop.
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/bash | |
for (( i=0; i<100; i++ )); do | |
echo $i | |
convert \ | |
-size 165x165 \ | |
xc:white \ | |
-pointsize 100 \ | |
-fill black\ | |
-gravity center \ | |
-draw "text 0,0 '$i'" \ | |
$i.png | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment