Skip to content

Instantly share code, notes, and snippets.

@Wikinaut
Created August 22, 2018 08:02
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 Wikinaut/017b211a81e10221bfc791f8c530bc88 to your computer and use it in GitHub Desktop.
Save Wikinaut/017b211a81e10221bfc791f8c530bc88 to your computer and use it in GitHub Desktop.
make watermark
convert -size 400x200 xc:none -font Hack-Bold -pointsize 25 -kerning 1 -gravity center -fill red -annotate 330x330+0+0 "Vorabzug - nicht für Veröffentlichung" -fill yellow -annotate 330x330+2+2 "Vorabzug . nicht für Veröffentlichung" WATERMARK_FILE.png
for i in *.jpg; do composite -dissolve 20% -tile WATERMARK_FILE.png $i ${i%.*}_x.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment