Quote:
Originally posted by fletcher
Try this:
-----------
#!/bin/sh
for i in $1/*.jpg
FILENAME=`basename $i`
composite -geometry +10+10 watermark.png $FILENAME $FILENAME
done
-----------
That's a simple shell script to do it if you have ImageMagick installed. The watermark file needs to be a PNG with transparency. You can set the offset by changing "+10+10", etc.
|
thx fletch, ill verify this then give it a try...