images/smilies/convert.sh
author Dan
Tue, 18 Sep 2007 17:03:03 -0400
changeset 136 f2ee42f026f7
parent 0 902822492a68
permissions -rw-r--r--
Fix: internal links parsed with RenderMan::parse_internal_links() did not get namespaces prepended; added Project: alias namespace for internal links

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