images/smilies/convert.sh
author dan@fuhry
Sat, 16 Jun 2007 18:47:06 -0400
changeset 9 1e61232606d6
parent 0 902822492a68
permissions -rw-r--r--
Following fixes: admin theme supports <button> tag now, PageProcessor can eval now, and SpecialAdmin.php plugin can no longer be disabled

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