libibitmap is a small library for loading and converting some
types of image files to grayscale Inkview ibitmap structures.
Currently, BMP, TIFF and GIF (non-animated) are supported.
Conversion to grayscale was chosen because Inkview has a habit
of crashing when loading some ibitmaps with RGB data.

Run 'make BUILD=<target>' to create the library, where <target>
can be one of "arm", "arm_gnueabi" and "emu".  Copy libibitmap.a
and the img2ibitmap.h header file to the proper system locations
for building cross-compiled programs.

img2ibitmap.h shows the available functions.  Using them is
as simple as:


#include <img2ibitmap.h>
ibitmap *bm = gif2ibitmap("/mnt/ext2/myimg.gif");
