images/smilies/convert.sh
author Dan
Sat, 19 Jul 2008 20:47:00 -0400
changeset 645 24f2fa13a2a0
parent 0 902822492a68
permissions -rw-r--r--
Fixed autofill ignoring existing ID for text box parent node. Note that autofill is still in a nonworking state.

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