images/smilies/convert.sh
author Dan
Sun, 29 Jul 2007 17:40:36 -0400
changeset 78 4df25dfdde63
parent 0 902822492a68
permissions -rw-r--r--
Modified Text_Wiki parser to fully support UTF-8 strings; several other UTF-8 fixes, international characters seem to work reasonably well 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