images/smilies/convert.sh
author Dan
Mon, 28 Jul 2008 13:10:22 -0600
changeset 671 267c9f93b51f
parent 0 902822492a68
permissions -rw-r--r--
Added hack to printable theme to allow exporting of a website into static files (thanks vadi for the request); source for this functionality will be released soon

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