Bitmap
A bitmap is a digital image composed of a grid of picture elements, or pixels. Each pixel encodes color information, and the collective arrangement of pixels forms the final picture. Bitmaps are a form of raster graphics, as opposed to vector graphics, which describe images with geometric shapes and mathematical formulas.
In memory or on disk, a bitmap is stored as a two-dimensional array of pixel values. The
Bitmap formats vary in how they store data and metadata. The Windows Bitmap (BMP) format is a
Pixel rows are typically arranged line by line, sometimes with padding to align scanlines to word boundaries
Advantages of bitmaps include straightforward access to individual pixels and compatibility with image editing workflows. Disadvantages
See also: raster graphics, vector graphics, image compression, color depth.