Created
July 11, 2017 08:14
-
-
Save distresslife/2c3f8963c4222a26b1d37df34eb24425 to your computer and use it in GitHub Desktop.
ImageMagick
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
magick mogrify -quality 85 -auto-orient -strip -resize "1280x960" -format jpg *.JPG | |
for pic in *.jpg; do | |
convert -size 140x80 xc:none -fill "#EEE7" \ | |
-gravity NorthWest -draw "text 10,10 '@distresslife'" \ | |
-gravity SouthEast -draw "text 5,15 '@distresslife'" \ | |
miff:- | | |
composite -tile - $pic ${pic//.jpg}-marked.jpg | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment