images/smilies/render-smilies.sh
author Dan
Fri, 02 Apr 2010 14:42:15 -0400
changeset 1234 903bb153c265
parent 944 073a42e4177f
permissions -rw-r--r--
Fixed fread() usage in Request_HTTP not properly handling incomplete responses

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