images/smilies/render-smilies.sh
author Dan
Thu, 29 Jul 2010 11:28:58 -0400
changeset 1267 31ff2e5351b0
parent 944 073a42e4177f
permissions -rw-r--r--
Added ability for plugins to hook into admin user manager

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