'''B'''it'''M'''a'''P''', a raster image file format frequent in the [Microsoft Windows] community. It is typically uncompressed, and typically uses either a direct RGB rasterization or 1 to 8 bit per pixel color lookup table. BMP does support simple RLE compression, but that is increasingly uncommon, even in images that would benefit from it. Since [Windows Vista], BMP files may also make use of ARGB colorspaces and they may simply be a wrapper for PNG or JPEG data (useful when the image is large). Care must be taken when handling BMPs containing Alpha data, as the vast majority of editing software simply destroys it. (BMPs have always provided ''space'' for Alpha data.) Because of the file format's relative simplicity (sans PNG and JPEG extensions), it is nowdays commonly usable with software running on systems other than [Microsoft Windows], particularly simple games using [SDL] and the like. Microsoft BMP files and ICO files are closely related, so the ability to read one often leads library developers to support the other as well. All modern browsers, for example, can handle the `favicon.ico` file to display the little image you see on the left of the "address bar" and on browsing "tabs". Some older BMP files shipped with Windows have pathological characteristics; software that wishes to handle all possible cases must be aware of them, but for all other practical purposes they can be safely ignored in modern software. <> [[anyone have a web address for info on bmp format?]] [RS] has http://www.google.com/ that can bring forth many, in this case for "bmp format description": * http://www.daubnet.com/formats/BMP.html * http://www.cs.hope.edu/csci342/project1.html * http://www.faqs.org/faqs/graphics/fileformats-faq/part3/section-18.html * http://www.wotsit.org/search.asp?s=graphics [strimj segmentation] has a reader strimj::fromBMP2 for binary .BMP files (1 bit per pixel). ---- In the 1980s, [XBM] files in the Unix/X-world also often had the .bmp extension, but this is a whole different format, text files in C syntax to describe binary images as sort of a hexdump. ---- See [bmp extension] - [Img] - [bmp2ppm] [CRIMP] can read BMP images. ---- Elsewhere, BMP is used to abbreviate the Basic Multilingual Plane - the [Unicode]s from U+0000 to U+FFFD that Tcl/Tk supports. [http://en.wikipedia.org/wiki/Mapping_of_Unicode_characters] ---- We have a [pure-tcl BMP reader/writer] (updated 2007-05-15). ---- The [tcllib] [ico] module can read and write bmp images <> Graphics | Glossary