Skip to content

Instantly share code, notes, and snippets.

@EndruK
Created May 5, 2020 09:47
Show Gist options
  • Save EndruK/473a955a09e0b23cc8608360c331c5b1 to your computer and use it in GitHub Desktop.
Save EndruK/473a955a09e0b23cc8608360c331c5b1 to your computer and use it in GitHub Desktop.
Add watermarks to images
#!/bin/bash
# requires imagemagick
convert input.jpg -fill grey -background transparent -pointsize 100 -gravity center -draw "rotate -20 text 0 0 'Copyright Text'" output.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment