Posted: 2006-10-09T05:10:18-07:00
Make a large image of all of your input images and then quantize that down to 256 colors.
to 255 instead of 256.
- convert -append *.bmp -colors 256 map.png
for image in *.bmp do
base=`echo $image | sed "s/.bmp//"`
convert $image -map map.png -colors 256 -transparent "#ff00ff" $base.png
done
to 255 instead of 256.