images/smilies/convert.sh
author Dan
Tue, 18 Sep 2007 16:29:26 -0400
changeset 135 c5dbad7ec2d0
parent 0 902822492a68
permissions -rw-r--r--
Enano should now fully support UTF-8 usernames; newly registered users are now granted automatic edit access to their user pages (admins can still use protection on the page)

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