30.11.2006

updates:
  - the first two byte of the array now contains the image size width, height in pixel
  - if no outfile name is specified than file will be placed in same directory



--------------------------------------------------------------------------------
06.11.2006	

BMP2C.exe is a command line tool to convert a windows bitmap file (*.bmp) to be used for a 4bit (greyscale) OLED display. The converted data is a C-language structure like this:

const char Image[] = { 0x00, 0xFF, ........ };

This can be included into the sourcefiles e.g. in the CodeWarrior IDE.

--------------------------------------------------------

Usage:
BMP2C.exe  bmpfile outfile
    bmpfile  bitmap file to be converted
    outfile  output "C" file created

--------------------------------------------------------
 

