images/smilies/convert.sh
author Dan
Tue, 18 Dec 2007 23:45:43 -0500
changeset 323 a82133ce2d76
parent 0 902822492a68
permissions -rw-r--r--
A number of updates to the graphing code (it should actually work now)

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