2009-07-17 4:19 pm
No Comments
So I've been looking for an easy way to watermark images without much fuss. I stumbled upon a few solutions but this one worked best.
Preliminary steps:
or
Download ImageMagick binaries but you're on your own with installing and setting paths. I stuffed my install into /usr/local/bin/ and it seemed to work.
Create the droplet.
on open theObjects
repeat with theObject in theObjects
do shell script "/opt/local/bin/composite -dissolve 25 -gravity southeast ~/Documents/logo.png '" & (POSIX path of theObject as string) & "' '" & (POSIX path of theObject as string) & "'"
end repeat
end openNote the path to the logo - mine is in ~Documents.
Thanks to SingleServingPhoto for the germ of the idea.

