images/smilies/convert.sh
author Dan
Tue, 11 Sep 2007 18:35:39 -0400
changeset 129 0b5244001799
parent 0 902822492a68
permissions -rw-r--r--
Rebranded as 1.0.1.1; fixed category page drawing bug; updated link to GPL in the about page to the GPLv2

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