BMP file format

原文地址::http://en.wikipedia.org/wiki/BMP_file_format

 


相关网帖

1.16位位图格式(转)----http://hi.baidu.com/rmgsxpxtzebcdpd/item/2fa5bf4e7f576c0be9350470



From Wikipedia, the free encyclopedia
Windows Bitmap
Filename extension.bmp, .dib
Internet media typeimage/bmp,
image/x-bmp
(alias)
Type code'BMP '
'BMPf'
'BMPp'
Uniform Type Identifiercom.microsoft.bmp
Type of formatRaster graphics

The BMP file format, also known as bitmap image file or Device Independent Bitmap (DIB) file format or simply a bitmap, is a raster graphics image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft Windows and OS/2operating systems.

The BMP file format is capable of storing 2D digital images of arbitrary width, height, and resolution, bothmonochrome and color, in various color depths, and optionally with data compressionalpha channels, andcolor profiles.

Contents

   [hide

[edit]Device-independent bitmaps and the BMP file format

Microsoft has defined a particular representation of color bitmaps of different color depths, as an aid to exchanging bitmaps between devices and applications with a variety of internal representations. They called these device-independent bitmaps or DIBs, and the file format for them is called DIB file format or BMP image file format. According to Microsoft support:[1]

A device-independent bitmap (DIB) is a format used to define device-independent bitmaps in various color resolutions. The main purpose of DIBs is to allow bitmaps to be moved from one device to another (hence, the device-independent part of the name). A DIB is an external format, in contrast to a device-dependent bitmap, which appears in the system as a bitmap object (created by an application...). A DIB is normally transported in metafiles (usually using the StretchDIBits() function), BMP files, and the Clipboard (CF_DIB data format).

The following sections discuss the data stored in the BMP file or DIB in detail. This is the standard BMP file format.[1] Some applications create bitmap image files which are not compliant with the current Microsoft documentation. Also, not all fields are used; a value of 0 will be found in these unused fields.

[edit]File structure

The bitmap image file consists of fixed-size structures (headers) as well as variable-size structures appearing in a predetermined sequence. Many different versions of some of these structures can appear in the file, due to the long evolution of this file format.

Diag. 1 – The structure of the bitmap image file

Referring to the diagram 1, the bitmap file is composed of structures in the following order:

Structure Name Optional Size Purpose Comments
Bitmap File HeaderNo14 BytesTo store general information about the Bitmap Image FileNot needed after the file is loaded in memory
DIB HeaderNoFixed-size
(however 7 different versions exist)
To store detailed information about the bitmap image and define the pixel formatImmediately follows the Bitmap File Header
Extra bit masksYes3 or 4 DWORDs[2]
(12 or 16 Bytes)
To define the pixel formatPresent only in case the DIB Header is the BITMAPINFOHEADER
Color TableSemi-optionalVariable-sizeTo define colors used by the bitmap image data (Pixel Array)Mandatory for color depths <= 8
Gap1YesVariable-sizeStructure alignmentAn artifact of the File Offset to PixelArray in the Bitmap File Header
Pixel ArrayNoVariable-sizeTo define the actual values of the pixelsThe pixel format is defined by the DIB Header or Extra bit masks. Each row in the Pixel Array is padded to a multiple of 4 bytes in size
Gap2YesVariable-sizeStructure alignmentAn artifact of the ICC Profile Data offset field in the DIB Header
ICC Color ProfileYesVariable-sizeTo define the color profile for color managementCan also contain a path to an external file containing the color profile. When loaded in memory as "non-packed DIB", it is located between the color table and gap1.[3]

[edit]DIBs in memory

A bitmap image file loaded into memory becomes a DIB data structure – an important component of the Windows GDI API. The in-memory DIB data structure is almost the same as the BMP file format, but it does not contain the 14-byte bitmap file header and begins with the DIB header. For DIBs loaded in memory, the color table can also consist of 16 bit entries, that constitute indexes to the currently realized palette[4] (an additional level of indirection), instead of explicit RGB color definitions. In all cases, the pixel array must begin at a memory address that is a multiple of 4 bytes. In non-packed DIBs loaded in memory, the optional color profile data should be located immediately after the color table and before the gap1 and pixel array[3] (unlike in diag. 1).

When the size of gap1 and gap2 is zero, the in-memory DIB data structure is customarily referred to as "packed DIB" and can be referred to by a single pointer pointing to the beginning of the DIB header. In all cases, the pixel array must begin at a memory address that is a multiple of 4 bytes. In some cases it may be necessary to adjust the number of entries in the color table in order to force the memory address of the pixel array to a multiple of 4 bytes.[4] For "packed DIBs" loaded in memory, the optional color profile data should immediately follow the pixel array, as depicted in diag. 1 (with gap1=0 and gap2=0).[3]
"Packed DIBs" are required by Windows clipboard API functions as well as by some Windows patterned brush and resource functions.[5]

[edit]Bitmap file header

This block of bytes is at the start of the file and is used to identify the file. A typical application reads this block first to ensure that the file is actually a BMP file and that it is not damaged. The first two bytes of the BMP file format are the character 'B' then the character 'M' in 1-byte ASCII encoding. All of the integer values are stored in little-endian format (i.e. least-significant byte first).

Offset# Size Purpose
0000h2 bytesthe header field used to identify the BMP & DIB file is 0x42 0x4D in hexadecimal, same as BM in ASCII. The following entries are possible:
  • BM – Windows 3.1x, 95, NT, ... etc.
  • BA – OS/2 struct Bitmap Array
  • CI – OS/2 struct Color Icon
  • CP – OS/2 const Color Pointer
  • IC – OS/2 struct Icon
  • PT – OS/2 Pointer
0002h4 bytesthe size of the BMP file in bytes
0006h2 bytesreserved; actual value depends on the application that creates the image
0008h2 bytesreserved; actual value depends on the application that creates the image
000Ah4 bytesthe offset, i.e. starting address, of the byte where the bitmap image data (pixel array) can be found.

[edit]DIB header (bitmap information header)

This block of bytes tells the application detailed information about the image, which will be used to display the image on the screen. The block also matches the header used internally by Windows and OS/2 and has several different variants. All of them contain a dword (32 bit) field, specifying their size, so that an application can easily determine which header is used in the image. The reason that there are different headers is that Microsoft extended the DIB format several times. The new extended headers can be used with some GDI functions instead of the older ones, providing more functionality. Since the GDI supports a function for loading bitmap files, typical Windows applications use that functionality. One consequence of this is that for such applications, the BMP formats that they support match the formats supported by the Windows version being run. See the table below for more information.

Size Header Name OS support Features Added (incremental) in Bitmap Files Written by
12BITMAPCOREHEADER
OS21XBITMAPHEADER
OS/2 and also all Windows versions since Windows 3.0  
64BITMAPCOREHEADER2
OS22XBITMAPHEADER
OS/2Adds halftoning. Adds RLE and Huffman 1D compression. 
40BITMAPINFOHEADERall Windows versions sinceWindows 3.0Removes RLE-24 and Huffman 1D compression. Adds 16bpp and 32bpp pixel formats. Adds optional RGB bit masks.Adobe Photoshop
52BITMAPV2INFOHEADERUndocumented.Removes optional RGB bit masks. Adds mandatory RGB bit masks. 
56BITMAPV3INFOHEADERUndocumented.Adds mandatory alpha channel bit mask.Adobe Photoshop
108BITMAPV4HEADERall Windows versions since Windows 95/NT4Adds color space type and gamma correction 
124BITMAPV5HEADERWindows 98/2000 and newerAdds ICC color profiles 

Versions after BITMAPCOREHEADER only add fields to the end of the header of the previous version. For example: BITMAPV2INFOHEADER adds fields to BITMAPINFOHEADER and BITMAPV3INFOHEADER adds fields to BITMAPV2INFOHEADER (or, BITMAPINFOHEADER is a stripped version of BITMAPV2INFOHEADER)

For compatibility reasons, most applications use the older DIB headers for saving files. With OS/2 being obsolete, for now the common format is the BITMAPINFOHEADER header. See next table for its description. All values are stored as unsigned integers, unless explicitly noted.

Offset # Size Purpose
0Eh4the size of this header (40 bytes)
12h4the bitmap width in pixels (signed integer).
16h4the bitmap height in pixels (signed integer).
1Ah2the number of color planes being used. Must be set to 1.
1Ch2the number of bits per pixel, which is the color depth of the image. Typical values are 1, 4, 8, 16, 24 and 32.
1Eh4the compression method being used. See the next table for a list of possible values.
22h4the image size. This is the size of the raw bitmap data (see below), and should not be confused with the file size.
26h4the horizontal resolution of the image. (pixel per meter, signed integer)
2Ah4the vertical resolution of the image. (pixel per meter, signed integer)
2Eh4the number of colors in the color palette, or 0 to default to 2n.
32h4the number of important colors used, or 0 when every color is important; generally ignored.

Note: The image size field can be 0 for BI_RGB bitmaps.

The compression method field (bytes #30-33) can have the following values:

Value Identified by Compression method Comments
0BI_RGBnoneMost common
1BI_RLE8RLE 8-bit/pixelCan be used only with 8-bit/pixel bitmaps
2BI_RLE4RLE 4-bit/pixelCan be used only with 4-bit/pixel bitmaps
3BI_BITFIELDSBit field or Huffman 1D compression for BITMAPCOREHEADER2Pixel format defined by bit masks or Huffman 1D compressed bitmap for BITMAPCOREHEADER2
4BI_JPEGJPEG or RLE-24 compression for BITMAPCOREHEADER2The bitmap contains a JPEG image or RLE-24 compressed bitmap for BITMAPCOREHEADER2
5BI_PNGPNGThe bitmap contains a PNG image
6BI_ALPHABITFIELDSBit fieldThis value is valid in Windows CE .NET 4.0 and later.

Note: BI_JPEG and BI_PNG are for printer drivers and are not supported when rendering to the screen.[6]

The OS/2 BITMAPCOREHEADER header is also popular:

Offset Size Purpose
0Eh4the size of this header (12 bytes)
12h2the bitmap width in pixels.
14h2the bitmap height in pixels.
16h2the number of color planes; 1 is the only legal value
18h2the number of bits per pixel. Typical values are 1, 4, 8 and 24.

Note: OS/2 BITMAPCOREHEADER bitmaps cannot be compressed and cannot be 16 or 32 bits/pixel. All values in the OS/2 BITMAPCOREHEADER header are unsigned integers.

A 16-bit and 32-bit version of DIB with an integrated alpha channel has been introduced with the undocumented BITMAPV3INFOHEADER and with the documented BITMAPV4HEADER (since Windows 95) and is used within Windows XP logon and theme system as well as Microsoft Office (since v2000); it is supported by some image editing software, such as Adobe Photoshop since version 7 and Adobe Flash since version MX 2004 (then known as Macromedia Flash). It is also supported by GIMPGoogle ChromeMS-PowerPoint and MS-Word.

[edit]Color table

The color table (palette) occurs in the BMP image file directly after the BMP file header, the DIB header (and after optional three red, green and blue bitmasks if the BITMAPINFOHEADER header with BI_BITFIELDS option is used). Therefore, its offset is the size of the BITMAPFILEHEADER plus the size of the DIB header (plus optional 12 bytes for the three bit masks).
Note: On Windows CE the BITMAPINFOHEADER header can be used with the BI_ALPHABITFIELDS[2] option in the biCompression member. In such case, four optional bitmasks follow the BITMAPINFOHEADER header instead of the two bitmask mentioned above, thus the color table's offset is the size of the BITMAPFILEHEADER plus the size of the BITMAPINFOHEADER header plus the 16 bytes of the four bitmasks (red, green, blue and alpha).

The number of entries in the palette is either 2n or a smaller number specified in the header (in the OS/2 BITMAPCOREHEADER header format, only the full-size palette is supported).[1][7] In most cases, each entry in the color table occupies 4 bytes, in the order blue, green, red, 0x00 (see below for exceptions).

The color table is a block of bytes (a table) listing the colors used by the image. Each pixel in an indexed color image is described by a number of bits (1, 4, or 8) which is an index of a single color described by this table. The purpose of the color palette in indexed color bitmaps is to inform the application about the actual color that each of these index values corresponds to. The purpose of the color table in non-indexed (non-palettized) bitmaps is to list the colors used by the bitmap for the purposes of optimization on devices with limited color display capability and to facilitate future conversion to different pixel formats and paletization.

The colors in the color table are usually specified in the 4-byte per entry 8.8.8.0.8 format (in RGBAX notation). The color table used with the OS/2 BITMAPCOREHEADER uses the 3-byte per entry 8.8.8.0.0 format.[1][7] For DIBs loaded in memory, the color table can optionally consist of 2-byte entries - these entries constitute indexes to the currently realized palette[4] instead of explicit RGB color definitions.

Microsoft does not disallow the presence of a valid alpha channel bit mask[8] in BITMAPV4HEADER and BITMAPV5HEADER for 1bpp, 4bpp and 8bpp indexed color images, which indicates that the color table entries can also specify an alpha component using the 8.8.8.[0-8].[0-8] format via the RGBQUAD.rgbReserved[9] member. However, some versions of Microsoft's documentation disallow this feature by stating that the RGBQUAD.rgbReserved member "must be zero".

As mentioned above, the color table is normally not used when the pixels are in the 16-bit per pixel (16bpp) format (and higher); there are normally no color table entries in those bitmap image files. However, the Microsoft documentation (on the MSDN web site as of Nov. 16, 2010) specifies that for 16bpp (and higher), the color table can be present to store a list of colors intended for optimization on devices with limited color display capability, while it also specifies, that in such cases, no indexed palette entries are present in this Color Table. This may seem like a contradiction if no distinction is made between the mandatory palette entries and the optional color list.

[edit]Pixel storage

The bits representing the bitmap pixels are packed in rows. The size of each row is rounded up to a multiple of 4 bytes (a 32-bit DWORD) by padding.
For images with height > 1, multiple padded rows are stored consecutively, forming a Pixel Array.

The total number of bytes necessary to store one row of pixels can be calculated as:

\mbox{RowSize} = \left\lfloor\frac { \mbox{BitsPerPixel} \cdot \mbox{ImageWidth}+31 }{32}\right\rfloor \cdot 4,
ImageWidth is expressed in pixels.

The total amount of bytes necessary to store an array of pixels in an n bits per pixel (bpp) image, with 2n colors, can be calculated by accounting for the effect of rounding up the size of each row to a multiple of a 4 bytes, as follows:

\mbox{PixelArraySize} = \mbox{RowSize} \cdot \left | \mbox{ImageHeight} \right  \vert
ImageHeight is expressed in pixels. The absolute value is necessary because ImageHeight can be negative

The total bitmap image file size can be approximated as:

\mbox{FileSize} \approx 54 + 4 \cdot 2^\mbox{bpp} + \mbox{PixelArraySize},
for  BPP ≤ 8 ( because for pixels larger than 8 bits, the  palette is not mandatory )

Only images with 8 or fewer bits per pixel must account for the palette. 16bpp images (or higher), may omit the palette part from the size calculation, as follows:

\mbox{FileSize} \approx 54 + \mbox{PixelArraySize},
for  Bits per Pixel > 8.

In the formulas above, the number 54 is the combined size of the 14 byte bitmap file header and the 40 byte popular WindowsDIB header – the BITMAPINFOHEADER  (some other DIB header versions will be larger or smaller than that as described by the table above) and the expression 4 \cdot 2^n  is the size of the color palette in bytes.

This total file size formula is only an approximation, since the size of the color palette will be 3 \cdot 2^n bytes for the OS/2 DIB header version BITMAPCOREHEADER, and some files may define only the number of colors needed by the image, potentially fewer than 2^n.[1]
An additional size uncertainty is introduced by the optional presence of the 12 or 16 bytes needed for the extra bit masks stored immediately after the BITMAPINFOHEADER DIB header and the variable-size GAP depicted in Diag.1

[edit]Pixel array (bitmap data)

The pixel array is a block of 32-bit DWORDs, that describes the image pixel by pixel. Normally pixels are stored "upside-down" with respect to normal image raster scan order, starting in the lower left corner, going from left to right, and then row by row from the bottom to the top of the image.[1]
Unless BITMAPCOREHEADER is used, uncompressed Windows bitmaps also can be stored from the top to bottom, when the Image Height value is negative.

In the original OS/2 DIB, the only four legal values of color depth were 1, 4, 8, and 24 bits per pixel (bpp).[1] Contemporary DIB Headers allow pixel formats with 1, 2, 4, 8, 16, 24 and 32 bits per pixel (bpp).[10]

Padding bytes (not necessarily 0) must be appended to the end of the rows in order to bring up the length of the rows to a multiple of four bytes. When the pixel array is loaded into memory, each row must begin at a memory address that is a multiple of 4. This address/offset restriction is mandatory only for Pixel Arrays loaded in memory. For file storage purposes, only the size of each row must be a multiple of 4 bytes while the file offset can be arbitrary.[1]
A 24-bit bitmap with Width=1, would have 3 bytes of data per row (blue, green, red) and 1 byte of padding, while Width=2 would have 2 bytes of padding, Width=3 would have 3 bytes of padding, and Width=4 would not have any padding at all.

bitmap image files are typically much larger than image file formats compressed with other algorithms, for the same image. For example, the 1058×1058 Wikipedia logo, which occupies about 271 kB in the lossless PNG format, takes about 3358 kB as a 24bpp BMP image file. Uncompressed formats are generally unsuitable for transferring images on the internet or other slow or capacity-limited media.

[edit]Compression

Indexed color images may be compressed with 4-bit or 8-bit RLE or Huffman 1D algorithm.
OS/2 BITMAPCOREHEADER2 24bpp images may be compressed with the 24-bit RLE algorithm.
The 16bpp and 32bpp images are always stored uncompressed.
Note that images in all color depths can be stored without compression if so desired.

[edit]Pixel format

In a bitmap image file on a disk or a bitmap image in memory, the pixels can be defined by a varying number of bits.

  • The 1-bit per pixel (1bpp) format supports 2 distinct colors, (for example: black and white). The pixel values are stored in each bit, with the first (left-most) pixel in the most-significant bit of the first byte.[1] Each bit is an index into a table of 2 colors. An unset bit will refer to the first color table entry, and a set bit will refer to the last (second) color table entry.
  • The 2-bit per pixel (2bpp) format supports 4 distinct colors and stores 4 pixels per 1 byte, the left-most pixel being in the two most significant bits (Windows CE only[11]). Each pixel value is a 2-bit index into a table of up to 4 colors.
  • The 4-bit per pixel (4bpp) format supports 16 distinct colors and stores 2 pixels per 1 byte, the left-most pixel being in the more significant nibble.[1] Each pixel value is a 4-bit index into a table of up to 16 colors.
  • The 8-bit per pixel (8bpp) format supports 256 distinct colors and stores 1 pixel per 1 byte. Each byte is an index into a table of up to 256 colors.
  • The 16-bit per pixel (16bpp) format supports 65536 distinct colors and stores 1 pixel per 2 byte WORD. Each WORD can define the alpha, red, green and blue samples of the pixel.
  • The 24-bit pixel (24bpp) format supports 16,777,216 distinct colors and stores 1 pixel value per 3 bytes. Each pixel value defines the red, green and blue samples of the pixel (8.8.8.0.0 in RGBAX notation). Specifically in the order (blue, green and red, 8-bits per each sample).[1]
  • The 32-bit per pixel (32bpp) format supports 4,294,967,296 distinct colors and stores 1 pixel per 4 byte DWORD. Each DWORD can define the Alpha, Red, Green and Blue samples of the pixel.

In order to resolve the ambiguity of which bits define which samples, the DIB Headers provide certain defaults as well as specific BITFIELDS which are bit masks that define the membership of particular group of bits in a pixel to a particular channel.
The following diagram defines this mechanism:

The BITFIELDS mechanism depicted in RGBAX sample length notation

Diag. 2 – The BITFIELDS mechanism for a 32 bit pixel depicted in RGBAX sample length notation

The sample fields defined by the BITFIELDS bit masks have to be contiguous and non-overlapping.
The red, green and blue bit masks are valid only when the Compression member of the DIB header is set to BI_BITFIELDS.
The alpha bit mask is valid whenever it is present in the DIB header or when the Compression member of the DIB header is set to BI_ALPHABITFIELDS[2](Windows CE only).

The BITFIELDS mechanism depicted in RGBAX sample length notation

Diag.3 – The pixel format with an alpha channel in a 16 bit pixel (in RGBAX sample Lngth notation) actually generated by Adobe Photoshop[11]

The table below lists all of the possible pixel formats of a DIB (in RGBAX notation).
All of the possible pixel formats in a DIB

The BITFIELD mechanism described above allows for the definition of tens of thousands different pixel formats, however only several of them are used in practice,[11] such as:

  • 8.8.8.0.0
  • 8.8.8.0.8
  • 8.8.8.8.0
  • 5.5.5.0.1
  • 5.5.5.1.0
  • 5.6.5.0.0
  • 4.4.4.0.4
  • 4.4.4.4.0
  • All palettized formats (marked in yellow in the table above)

[edit]Example 1

Following is an example of a 2×2 pixel, 24-bit bitmap (Windows DIB header BITMAPINFOHEADER) with pixel format 8.8.8.0.0 (in RGBAX notation).

Example of a 2×2 pixel bitmap, with 24 bits/pixel encoding
Offset Size Hex Value Value Description
BMP Header
0h242 4D"BM"Magic number (unsigned integer 66, 77)
2h446 00 00 0070 BytesSize of the BMP file
6h200 00UnusedApplication specific
8h200 00UnusedApplication specific
Ah436 00 00 0054 bytesOffset where the pixel array (bitmap data) can be found
DIB Header
Eh428 00 00 0040 bytesNumber of bytes in the DIB header (from this point)
12h402 00 00 002 pixelsWidth of the bitmap in pixels
16h402 00 00 002 pixelsHeight of the bitmap in pixels
1Ah201 001 planeNumber of color planes being used
1Ch218 0024 bitsNumber of bits per pixel
1Eh400 00 00 000BI_RGB, no pixel array compression used
22h410 00 00 0016 bytesSize of the raw data in the pixel array (including padding)
26h413 0B 00 002,835 pixels/meterHorizontal resolution of the image
2Ah413 0B 00 002,835 pixels/meterVertical resolution of the image
2Eh400 00 00 000 colorsNumber of colors in the palette
32h400 00 00 000 important colors0 means all colors are important
Start of pixel array (bitmap data)
36h300 00 FF0 0 255Red, Pixel (0,1)
39h3FF FF FF255 255 255White, Pixel (1,1)
3Ch200 000 0Padding for 4 byte alignment (could be a value other than zero)
3Eh3FF 00 00255 0 0Blue, Pixel (0,0)
41h300 FF 000 255 0Green, Pixel (1,0)
44h200 000 0Padding for 4 byte alignment (could be a value other than zero)

[edit]Example 2

Following is an example of a 4×2 pixel, 32-bit bitmap with opacity values in the alpha channel (Windows DIB Header BITMAPV4HEADER) with pixel format 8.8.8.8.0 (in RGBAX notation).

Example of a 4×2 pixel bitmap, with 32 bits/pixel encoding
Offset Size Hex Value Value Description
BMP Header
0h242 4D"BM"Magic number (unsigned integer 66, 77)
2h49A 00 00 00154 BytesSize of the BMP file
6h200 00UnusedApplication specific
8h200 00UnusedApplication specific
Ah47A 00 00 00122 bytes from the start of the fileOffset where the pixel array (bitmap data) can be found
DIB Header
Eh46C 00 00 00108 bytesNumber of bytes in the DIB header (from this point)
12h404 00 00 004 pixelsWidth of the bitmap in pixels
16h402 00 00 002 pixelsHeight of the bitmap in pixels
1Ah201 001 planeNumber of color planes being used
1Ch220 0032 bitsNumber of bits per pixel
1Eh403 00 00 003BI_BITFIELDS, no pixel array compression used
22h420 00 00 0032 bytesSize of the raw data in the pixel array (including padding)
26h413 0B 00 002,835 pixels/meterHorizontal physical resolution of the image
2Ah413 0B 00 002,835 pixels/meterVertical physical resolution of the image
2Eh400 00 00 000 colorsNumber of colors in the palette
32h400 00 00 000 important colors0 means all colors are important
36h400 00 FF 0000FF0000 in big-endianRed channel bit mask (valid because BI_BITFIELDS is specified)
3Ah400 FF 00 000000FF00 in big-endianGreen channel bit mask (valid because BI_BITFIELDS is specified)
3Eh4FF 00 00 00000000FF in big-endianBlue channel bit mask (valid because BI_BITFIELDS is specified)
42h400 00 00 FFFF000000 in big-endianAlpha channel bit mask
46h420 6E 69 57LCS_WINDOWS_COLOR_SPACEType of Color Space
4Ah24h24* 00...00CIEXYZTRIPLE Color Space endpointsUnused when LCS_WINDOWS_COLOR_SPACE is specified
6Eh400 00 00 000 Red GammaUnused when LCS_WINDOWS_COLOR_SPACE is specified
72h400 00 00 000 Green GammaUnused when LCS_WINDOWS_COLOR_SPACE is specified
76h400 00 00 000 Blue GammaUnused when LCS_WINDOWS_COLOR_SPACE is specified
Start of the Pixel Array (the bitmap Data)
7Ah4FF 00 00 7F255 0 0 127Blue (Alpha: 127), Pixel (0,1)
7Eh400 FF 00 7F0 255 0 127Green (Alpha: 127), Pixel (1,1)
82h400 00 FF 7F0 0 255 127Red (Alpha: 127), Pixel (2,1)
86h4FF FF FF 7F255 255 255 127White (Alpha: 127), Pixel (3,1)
8Ah4FF 00 00 FF255 0 0 255Blue (Alpha: 255), Pixel (0,0)
8Eh400 FF 00 FF0 255 0 255Green (Alpha: 255), Pixel (1,0)
92h400 00 FF FF0 0 255 255Red (Alpha: 255), Pixel (2,0)
96h4FF FF FF FF255 255 255 255White (Alpha: 255), Pixel (3,0)

Note that the bitmap data starts with the lower left hand corner of the image.

[edit]Usage of BMP format

The simplicity of the BMP file format, and its widespread familiarity in Windows and elsewhere, as well as the fact that this format is relatively well documented and free of patents, makes it a very common format that image processing programs from many operating systems can read and write.

Many older graphical user interfaces used bitmaps in their built-in graphics subsystems;[12] for example, the Microsoft Windows and OS/2 platforms'GDI subsystem, where the specific format used is the Windows and OS/2 bitmap file format, usually named with the file extension of .BMP or .DIB.

While most BMP files have a relatively large file size due to lack of any compression (or generally low-ratio run-length encoding on palletized images), many BMP files can be considerably compressed with lossless data compression algorithms such as ZIP because they contain redundant data. Some formats, such as RAR, even include routines specifically targeted at efficient compression of such data.

[edit]Related formats

The X Window System uses a similar XBM format for black-and-white images, and XPM (pixelmap) for color images. There are also a variety of "raw" formats, which saves raw data with no other information. The Portable Pixmap (PPM) and Truevision TGA formats also exist, but are less often used – or only for special purposes; for example, TGA can contain transparency information.

Numerous other bitmap file formats are in existence, though most are not widely used.[13]

[edit]See also

[edit]References

  1. a b c d e f g h i j k "DIBs and Their Uses"Microsoft Help and Support. 2005-02-11.
  2. a b c MSDN - BITMAPINFOHEADER: BI_ALPHABITFIELDS in biCompression member
  3. a b c MSDN Bitmap Header Types
  4. a b c MSDN BITMAPINFO Structure
  5. ^ Feng Yuan - Windows graphics programming: Win32 GDI and DirectDraw: Packed Device-Independent Bitmap (CreateDIBPatternBrush, CreateDIBPatternBrushPt, FindResource, LoadResource, LockResource)
  6. ^ "JPEG and PNG Extensions for Specific Bitmap Functions and Structures".
  7. a b "GFF Format Summary: OS/2 Bitmap".
  8. ^ MSDN - BITMAPV4HEADER: The member bV4AlphaMask
  9. ^ MSDN - RGBQUAD: rgbReserved member
  10. ^ MSDN - BITMAPINFOHEADER: The member biBitCount
  11. a b c MSDN: Windows CE - BITMAPINFOHEADER Structure
  12. ^ Julian Smart, Stefan Csomor, and Kevin Hock (2006). Cross-Platform GUI Programming with Wxwidgets. Prentice Hall. ISBN 0-13-147381-6.
  13. ^ "List of bitmap file types"Search File-Extensions.org.

[edit]External links



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值