images/smilies/convert.sh
author Dan
Sat, 08 Sep 2007 14:02:19 -0400
changeset 125 fb31c951d3a2
parent 0 902822492a68
permissions -rw-r--r--
Fixed some rather major bugs in the registration system, this will need a release followup

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