Quote:
Originally Posted by Dennis69
I was wondering if there is a script which I can drop into a dir server side and add a watermark to photos, I don't want to do over a 1/4 million pictures by hand 
|
use imagemagick.
Code:
composite -gravity southeast -quality 90 -dissolve 50 watermark.png image.jpg newimage.jpg
that would be the watermark in the bottom right.
first: backup the originals
second: goto the dir of images you wanna watemark (also make sure your watermark.png is in this folder)
Code:
find . -name "*jpg" -type f -exec composite -gravity southeast -quality 90 -dissolve 50 watermark.png {} {} \;
hope this helps.