Unit BMP2RLE

--- 256 COLOUR BITMAP COMPRESSOR --------------------------------------------- // This form contains a simple user interface to take 256 colour bitmaps in windows BMP format and compress them using RLE8 compression. // The form itself contains no bitmap compression but attempts to locate a compressor in the windows system. // Version 1.00 Grahame Marsh 1 October 1997 // Freeware - you get it for free, I take nothing, I make no promises! // Please feel free to contact me: gsmarsh@aol.com // Revison History: Version 1.00 - initial release 1-10-97 // ------------------------------------------------------------------------------

Classes

TBitmapCompForm -

Functions

Types

P256Bitmap
T256Bitmap
T256Palette

Constants

Variables

BitmapCompForm


Functions


Types


P256Bitmap = ^T256Bitmap

T256Bitmap = record
b256File : TBitmapFileHeader;
b256Info : TBitmapInfoHeader;
b256Pal : T256Palette;
end;

T256Palette = array [0..255] of TRGBQuad;
declare own bitmap file record, specifically for 256 colour bitmaps

Constants


Variables

BitmapCompForm : TBitmapCompForm