images/smilies/render-smilies.sh
author Neal Gompa <neal@enanocms.org>
Fri, 02 Apr 2010 14:43:37 -0500
changeset 1236 f76cf260e9fa
parent 944 073a42e4177f
permissions -rw-r--r--
Fixed various legal marks in the strings of the English language pack

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