Skip to content

Instantly share code, notes, and snippets.

@doismellburning
Created October 26, 2014 16:07
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 doismellburning/da7e02bd720cc000fad0 to your computer and use it in GitHub Desktop.
Save doismellburning/da7e02bd720cc000fad0 to your computer and use it in GitHub Desktop.
#!/bin/bash
INFILE=$2
MESSAGE=$1
OUTFILE="$2.watermarked.jpg"
SIZE="6000x800" # Fiddle as needed
POINTSIZE="400" # Fiddle as needed
convert -size $SIZE xc:none -fill grey -pointsize $POINTSIZE -gravity Center -draw "text 0,0 '$MESSAGE'" miff:- | composite
-dissolve 20% -tile - $INFILE $OUTFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment