images/smilies/render-smilies.sh
author Dan Fuhry <dan@enanocms.org>
Wed, 29 Dec 2010 13:23:58 -0500
changeset 1331 c7d6317c5e82
parent 944 073a42e4177f
permissions -rw-r--r--
Fixed a postgresql bug in the File namespace (reported by phirox - thanks)

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