|
|
This component implements an interface to two color (black & white) images in a BMP format.
The component provides features which covers loading an external image file and converting it into the internal image array. The user can handle the image by GetImage method which returns pointer to the image structure. This structure consist of information about image width, height, size, name and also the image data itself (for details see User types page).
Image data representation: Example of image (9x7 pixels):
This example image is converted into the array Pixmap[14] = The component accept only black & white or color image files that are in the BMP format. The color images are limited to 16 or 256 color and they are internally converted into black & white representation. Black color is convert to black color and other colors are convert to white color, therefore it is recommended to convert such images by external tool and then using it as input instead of direct using color images as input to this component. |