images/smilies/convert.sh
author Dan
Tue, 01 Jan 2008 22:30:53 -0500
changeset 441 4d9a4da1975b
parent 0 902822492a68
permissions -rw-r--r--
Adding a few stray files and removing the no-longer-needed Creative Commons Attribution 2.0 license (no more libraries under that license are included with Enano); adding hooks pageprocess_render_{head,tail} to be run before and after the final page render, respectively.

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