#!/bin/sh -e

temp=`mktemp -q`
convert -compress none $1 $temp
bmptoppm $temp | ppmtobmp -bpp 24 > $2
rm -f $temp

