images/smilies/convert.sh
author Dan
Mon, 13 Apr 2009 16:57:20 -0400
changeset 907 44851d7e9bda
parent 0 902822492a68
permissions -rw-r--r--
Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.

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