images/smilies/convert.sh
author Dan
Mon, 28 Jan 2008 23:06:38 -0500
changeset 278 2c6ef58e315a
parent 0 902822492a68
permissions -rw-r--r--
Re-applying the revision with the comment fix (bad merge a couple revs back)

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