PIC (Allegro Addon)
Tom St Denis
tomstdenis@yahoo.com
http://tomstdenis.dhs.org

PIC is a JPEG like compressor (not quite as good but for the size of the
source what can you expect).  It can compress images in a lossy mode with
a variable quality parameter. The quality value can range from 1 (best) to
100 (worst).  Around 7 or so gives a good quality/size tradeoff and is the
default.  Note that if you changed the quality setting you don't need to
reset quality to **LOAD** pictures only to save them.

There are "#defines"'s in "pic.h" for the quality settings.

Your pictures must be multiples of 8x8 (i.e the width and height must be a
multiple of 8).  So 32x16 is ok but 32x13 is not.  The pictures must be
15bpp or higher.

If you want to throw this in your own project just take the files pic.c/pic.h
and throw them in your program.

