images/smilies/render-smilies.sh
author Dan Fuhry <dan@enanocms.org>
Thu, 10 Feb 2011 01:34:55 -0500
changeset 1339 03c5b9e8e02a
parent 944 073a42e4177f
permissions -rw-r--r--
functions: HTML compressor: fixed handling of <script> blocks which consist only of whitespace

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