images/smilies/convert.sh
author Dan
Fri, 07 Sep 2007 18:19:30 -0400
changeset 123 8df3abef6647
parent 0 902822492a68
permissions -rw-r--r--
Fixed the two known issues in the release notes; tarballs will be updated accordingly

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