Categories
Photography Technology

Image Magic

I’ve been experimenting around with software tools and utilities, and for this batch I used ImageMagick’s command line tools to create the thumbnails and add a signature. The shell script to add the signature is: #!/bin/sh for name in *jpg do echo $name convert $name -font AvantGuarde-Demi -pointsize 24 \ -gravity SouthEast \ -fill maroon […]