Created
February 1, 2018 12:23
-
-
Save FlakM/85fed1fc813919bd71887e1119db11df to your computer and use it in GitHub Desktop.
add png watermark to image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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