images/smilies/render-smilies.sh
author Dan Fuhry <dan@enanocms.org>
Thu, 18 Nov 2010 15:34:30 -0500
changeset 1325 1e20add419c8
parent 944 073a42e4177f
permissions -rw-r--r--
Fixed some rather severe issues when changing the urlname of uploaded files

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