images/smilies/convert.sh
author Dan
Mon, 28 Jul 2008 13:06:36 -0600
changeset 667 72818d2bf336
parent 0 902822492a68
permissions -rw-r--r--
Fixed improperly set up gzencode() replacement; fixed bad regexp in scale_image() security check

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