Skip to content

Instantly share code, notes, and snippets.

@FlakM
Created February 1, 2018 12:23
Show Gist options
  • Save FlakM/85fed1fc813919bd71887e1119db11df to your computer and use it in GitHub Desktop.
Save FlakM/85fed1fc813919bd71887e1119db11df to your computer and use it in GitHub Desktop.
add png watermark to image
#!/bin/bash
DIR=~/tata
FILES=$DIR/*.JPG
mkdir -p workdir
cp $FILES workdir -a
for f in $DIR/workdir/*.JPG
do
echo "Processing $f file..."
composite -dissolve 60% -gravity center -quality 100 \( $DIR/watermark.png -resize 150% \) $f $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment