C# 클래스 Emotion.Standard.Image.BMP.BmpFileHeader

Stores general information about the Bitmap file.
The first two bytes of the Bitmap file format (thus the Bitmap header) are stored in big-endian order. All of the other integer values are stored in little-endian format (i.e. least-significant byte first).
파일 보기 프로젝트 열기: Cryru/Emotion 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
BitsPerPixel short
ClrImportant int
ClrUsed int
Compression int
FileSize int
HeaderSize int
Height int
ImageSize int
Offset int
Planes short
Reserved int
Type short
Width int
XPelsPerMeter int
YPelsPerMeter int

프로퍼티 상세

BitsPerPixel 공개적으로 프로퍼티

The number of bits per pixel, which is the color depth of the image. Typical values are 1, 4, 8, 16, 24 and 32.
public short BitsPerPixel
리턴 short

ClrImportant 공개적으로 프로퍼티

The number of important colors used, or 0 when every color is important; generally ignored.
public int ClrImportant
리턴 int

ClrUsed 공개적으로 프로퍼티

The number of colors in the color palette, or 0 to default to 2^n.
public int ClrUsed
리턴 int

Compression 공개적으로 프로퍼티

The compression of the image - only RGB is supported.
public int Compression
리턴 int

FileSize 공개적으로 프로퍼티

The size of the bitmap file in bytes.
public int FileSize
리턴 int

HeaderSize 공개적으로 프로퍼티

The size of the BMP header, in bytes.
public int HeaderSize
리턴 int

Height 공개적으로 프로퍼티

The bitmap height in pixels (signed integer).
public int Height
리턴 int

ImageSize 공개적으로 프로퍼티

The image size. This is the size of the raw bitmap data (see below), and should not be confused with the file size.
public int ImageSize
리턴 int

Offset 공개적으로 프로퍼티

The offset, i.e. starting address, of the byte where the bitmap data can be found.
public int Offset
리턴 int

Planes 공개적으로 프로퍼티

The number of color planes being used. Must be set to 1.
public short Planes
리턴 short

Reserved 공개적으로 프로퍼티

Reserved; actual value depends on the application that creates the image.
public int Reserved
리턴 int

Type 공개적으로 프로퍼티

The magic number used to identify the bitmap file: 0x42 0x4D (Hex code points for B and M)
public short Type
리턴 short

Width 공개적으로 프로퍼티

The bitmap width in pixels (signed integer).
public int Width
리턴 int

XPelsPerMeter 공개적으로 프로퍼티

The horizontal resolution of the image. (pixel per meter, signed integer)
public int XPelsPerMeter
리턴 int

YPelsPerMeter 공개적으로 프로퍼티

The vertical resolution of the image. (pixel per meter, signed integer)
public int YPelsPerMeter
리턴 int