images/smilies/render-smilies.sh
author Dan
Sun, 30 Aug 2009 00:05:33 -0400
changeset 1111 8fae8fb3cbb1
parent 944 073a42e4177f
permissions -rw-r--r--
json2: fixed order of exception classes, it threw fits about missing Zend_Exception in ubuntu's latest PHP 5.2.6

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