images/smilies/convert.sh
author Dan
Thu, 03 Jul 2008 15:34:09 -0400
changeset 595 b051eb79b158
parent 0 902822492a68
permissions -rw-r--r--
As promised, dropped in the new librijndael. Benchmarks say about 3 times faster, but more performance testing will be done.

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