Skip to content

Instantly share code, notes, and snippets.

@jamal
Created February 19, 2014 21:49
Show Gist options
  • Save jamal/9102406 to your computer and use it in GitHub Desktop.
Save jamal/9102406 to your computer and use it in GitHub Desktop.
Generate 100 unique test photos using ImageMagick
for i in {1..100}
do
convert -size 100x100 xc:rgba\(255,0,0,0.4\) -draw "fill white text 10,10 '$i'" $i.png
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment