Skip to content

Instantly share code, notes, and snippets.

@riicchhaarrd
Last active March 28, 2024 15:30
Show Gist options
  • Save riicchhaarrd/acbf9f11985f9eac48800b35dae5f575 to your computer and use it in GitHub Desktop.
Save riicchhaarrd/acbf9f11985f9eac48800b35dae5f575 to your computer and use it in GitHub Desktop.
imagemagick watermark repeating text
#!/bin/bash
# usage: ./watermark.sh "your text" input_image_path.png
convert -background none -fill "rgba(128,128,128,0.25)" -font Arial -rotate -30 -pointsize 14 label:"$1" /tmp/wm.png
convert $2 -alpha on \( +clone -tile /tmp/wm.png -draw "color 0,0 reset" \) -composite result.png
#rm /tmp/wm.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment