images/smilies/render-smilies.sh
author Dan
Thu, 17 Dec 2009 04:26:21 -0500
changeset 1167 3c73e1b6d33f
parent 944 073a42e4177f
permissions -rw-r--r--
JSON preparser: fixed corruption of strings that include the exact pattern word, comma, space, word, colon

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