images/smilies/convert.sh
author Dan
Sat, 12 Jul 2008 03:32:57 -0400
changeset 628 ab6f55abb17e
parent 0 902822492a68
permissions -rw-r--r--
Rank editor is now in a working (beautiful) state. More intuitive than a Mac.

#!/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