images/smilies/render-smilies.sh
author Dan
Sat, 30 May 2009 14:46:57 -0400
changeset 1015 17721bad21df
parent 944 073a42e4177f
permissions -rw-r--r--
Removed Firebug Lite - unused, outdated, and potential licensing issue. All licensing issues should be resolved 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