And you shall know the truth,
& the truth shall make you free.
John 8:32
Effective Bulk-Copyrighting Images

Effective Bulk-Copyrighting Images

May 24, 2020

Steps

Script

#rotate iamge to correct orientation
for img in *; do
	jhead -autorot $img
done

# stamp bulk-copyright emblem
for img in *; do
 convert ${img} -gravity SouthWest -font Georgia  -pointsize 50 \
          -stroke '#000C' -strokewidth 2 -annotate 0 '© Bruce Wayne' \
          -stroke  none  -undercolor '#00000080' -fill white  -annotate 0 '© Bruce Wayne' \
          'f_'${img}
done

Required Tools

OS