images/smilies/convert.sh
author Dan
Sun, 11 Jan 2009 21:37:39 -0500
changeset 810 7fd2b8a58ae4
parent 0 902822492a68
permissions -rw-r--r--
JS core: whiteOutReportSuccess now has a sister whiteOutReportFailure(); both abstracted to function whiteOutDestroyWithImage(whitey, image_url)

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