images/smilies/convert.sh
author Dan
Sun, 22 Mar 2009 12:10:25 -0400
changeset 886 041c86ff16d5
parent 0 902822492a68
permissions -rw-r--r--
Set textarea in sidebar editor to fixed height of 360px due to webkit bug (thanks Neal)

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