images/smilies/convert.sh
author Dan
Fri, 02 Nov 2007 20:37:26 -0400
changeset 221 e5302cb1945c
parent 0 902822492a68
permissions -rw-r--r--
Localized a good part, if not all, of the registration page and a couple other things.

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