images/smilies/convert.sh
author Dan
Sat, 01 Dec 2007 00:35:15 -0500
changeset 307 95dc632bf084
parent 0 902822492a68
permissions -rw-r--r--
Dummy revision to artificially increment build number

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