Options

Watermarks in frame

pgmanpgman Registered Users Posts: 164 Major grins
edited March 8, 2014 in SmugMug Support
Hi,

Is there a way of running some kind of watermark command with imagemagick? I want to have a black frame around the image and in the black frame my copyright and the filename.

I do that on my own computer with the convert. I'd like to do that on SM servers as a watermark. It's most likely that they already use imagemagick for applying the watermarks.
for file in *.jpg; do convert $file -interlace NONE -comment "copyright 2014 Syv Ritch, all rights reserved. This image from http://www.sritch.com/" -unsharp 1x2+1+.10 -quality 85 -mattecolor black -frame 24x24 -font /home/froggy/downloads/windows/tahoma.ttf -fill white -pointsize 17 -gravity SouthWest -annotate 0x0 "    2014©sritch.com" -gravity SouthEast -annotate 0x0 "${file%%.*}    " tbl-$file; done

Which goes through the files in the directory, add a black frame of 24 pixels around and add my copyright + filename as a tahoma 17 point.


Thanks

Syv
Thanks
http://www.sritch.com
The Dogs of Vancouver, BC

Comments

Sign In or Register to comment.