Skip to content

Instantly share code, notes, and snippets.

@brian-i
brian-i / gist:ff0e6bba4934fbb3d25f93db01aba5ff
Last active July 29, 2016 03:39 — forked from bzg/gist:2fc136b176690ee7f1e7
Use imagemagick to rotate pictures in a directory and add borders
#!/bin/bash
# Uses http://www.imagemagick.org
find . -name "*.tif" | while read file; do
convert "$file" -background '#fdfdfd' -rotate 10 rotated_"${file:2}"
convert rotated_"${file:2}" -bordercolor '#fdfdfd' -border 40x100 rotbor_"${file:2}"
done