Skip to content

Instantly share code, notes, and snippets.

@conspirator
Created July 28, 2014 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conspirator/d2b83385661557a3b37c to your computer and use it in GitHub Desktop.
Save conspirator/d2b83385661557a3b37c to your computer and use it in GitHub Desktop.
Create numbered watermarked images via the command line ( ImageMagick )
for i in {1..25}; do convert original.jpg -font Helvetica -pointsize 200 -draw "gravity center fill white text 0,20 '$i'" water-marked-image-$i.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment