#!/bin/sh inkscape $1 --export-width 128 --export-png first.png >/dev/null if [ `identify -format "%h" first.png` -gt 128 ]; then inkscape $1 --export-height 128 --export-png first.png >/dev/null; fi w=`identify -format "%w" first.png` h=`identify -format "%h" first.png` xo=`echo 128 $w - 2 / p|dc` yo=`echo 128 $h - 2 / p|dc` composite -geometry +$xo+$yo first.png blank.png $1.thumb.png