Movatterモバイル変換


[0]ホーム

URL:


Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft EdgeMore info about Internet Explorer and Microsoft Edge
Table of contentsExit editor mode

BITMAPCOREINFO structure (wingdi.h)

Feedback

In this article

TheBITMAPCOREINFO structure defines the dimensions and color information for a DIB.

Syntax

typedef struct tagBITMAPCOREINFO {  BITMAPCOREHEADER bmciHeader;  RGBTRIPLE        bmciColors[1];} BITMAPCOREINFO, *LPBITMAPCOREINFO, *PBITMAPCOREINFO;

Members

bmciHeader

ABITMAPCOREHEADER structure that contains information about the dimensions and color format of a DIB.

bmciColors[1]

Specifies an array ofRGBTRIPLE structures that define the colors in the bitmap.

Remarks

A DIB consists of two parts: aBITMAPCOREINFO structure describing the dimensions and colors of the bitmap, and an array of bytes defining the pixels of the bitmap. The bits in the array are packed together, but each scan line must be padded with zeros to end on aLONG boundary. The origin of the bitmap is the lower-left corner.

ThebcBitCount member of theBITMAPCOREHEADER structure determines the number of bits that define each pixel and the maximum number of colors in the bitmap. This member can be one of the following values.

ValueMeaning
1The bitmap is monochrome, and thebmciColors member contains two entries. Each bit in the bitmap array represents a pixel. If the bit is clear, the pixel is displayed with the color of the first entry in thebmciColors table; if the bit is set, the pixel has the color of the second entry in the table.
4The bitmap has a maximum of 16 colors, and thebmciColors member contains up to 16 entries. Each pixel in the bitmap is represented by a 4-bit index into the color table. For example, if the first byte in the bitmap is 0x1F, the byte represents two pixels. The first pixel contains the color in the second table entry, and the second pixel contains the color in the sixteenth table entry.
8The bitmap has a maximum of 256 colors, and thebmciColors member contains up to 256 entries. In this case, each byte in the array represents a single pixel.
24The bitmap has a maximum of 2 (24) colors, and thebmciColors member isNULL. Each three-byte triplet in the bitmap array represents the relative intensities of blue, green, and red, respectively, for a pixel.
 

The colors in thebmciColors table should appear in order of importance.

Alternatively, for functions that use DIBs, thebmciColors member can be an array of 16-bit unsigned integers that specify indexes into the currently realized logical palette, instead of explicit RGB values. In this case, an application using the bitmap must call the DIB functions (CreateDIBitmap,CreateDIBPatternBrush, andCreateDIBSection ) with theiUsage parameter set to DIB_PAL_COLORS.

Note  

ThebmciColors member should not contain palette indexes if the bitmap is to be stored in a file or transferred to another application. Unless the application has exclusive use and control of the bitmap, the bitmap color table should contain explicit RGB values.

 

Requirements

RequirementValue
Minimum supported clientWindows 2000 Professional [desktop apps only]
Minimum supported serverWindows 2000 Server [desktop apps only]
Headerwingdi.h (include Windows.h)

See also

BITMAPCOREHEADER

Bitmap Structures

Bitmaps Overview

CreateDIBPatternBrush

CreateDIBSection

CreateDIBitmap

RGBTRIPLE


Feedback

Was this page helpful?

YesNoNo

Need help with this topic?

Want to try using Ask Learn to clarify or guide you through this topic?

Suggest a fix?

  • Last updated on

In this article

Was this page helpful?

YesNo
NoNeed help with this topic?

Want to try using Ask Learn to clarify or guide you through this topic?

Suggest a fix?