images/smilies/convert.sh
author Dan
Mon, 01 Oct 2007 23:52:25 -0400
changeset 160 87a988ca4ff4
parent 0 902822492a68
permissions -rw-r--r--
Fixed: wiki mode edit notice should be shown on fallback editor 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