Skip to content

Instantly share code, notes, and snippets.

@distresslife
Created July 11, 2017 08:14
Show Gist options
  • Save distresslife/2c3f8963c4222a26b1d37df34eb24425 to your computer and use it in GitHub Desktop.
Save distresslife/2c3f8963c4222a26b1d37df34eb24425 to your computer and use it in GitHub Desktop.
ImageMagick
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