Created
July 28, 2014 07:35
-
-
Save conspirator/d2b83385661557a3b37c to your computer and use it in GitHub Desktop.
Create numbered watermarked images via the command line ( ImageMagick )
This file contains 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
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