Skip to content

Instantly share code, notes, and snippets.

@svdgraaf
Created November 17, 2013 21:35
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 svdgraaf/7518553 to your computer and use it in GitHub Desktop.
Save svdgraaf/7518553 to your computer and use it in GitHub Desktop.
Simple ImageMagick Copyright and timestamp bar to any image
convert [inputfilename.jpg] -gravity north -background black -extent [width]x[height] +repage -box black -fill white -pointsize 12 -gravity southwest -annotate +3+3 '(c)Unicorns and magic sparkledust inc.' -gravity southeast -annotate +3+3 "`date +%H:%I`" -quality 99% output.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment