Record that stores single image data and information describing it.
public TImageData = packed record Width: LongInt; Height: LongInt; Format: TImageFormat; Size: LongInt; Bits: Pointer; Palette: PPalette32; end;
ImagingTypes (at line 337)
Members |
Description |
Width: LongInt; |
Width of image in pixels |
Height: LongInt; |
Height of image in pixels |
Format: TImageFormat; |
Data format of image |
Size: LongInt; |
Size of image bits in Bytes |
Bits: Pointer; |
Pointer to memory containing image bits |
Palette: PPalette32; |
Image palette for indexed images |