images/smilies/convert.sh
author Dan
Wed, 15 Apr 2009 19:44:47 -0400
changeset 915 91f4da84966f
parent 0 902822492a68
permissions -rw-r--r--
New, beautiful, rethought Admin:Home. No, really, you'll like it.

#!/bin/bash
for f in *.svg; do
    echo Converting $f
    fname=`echo $f | cut -d '.' -f 1`
    rm -f $fname.png
    inkscape -z -f $f -w 22 -h 22 -e ./$fname.png
done