TImageData Record
ImagingTypes

Record that stores single image data and information describing it.

Pascal
public TImageData = packed record
  Width: LongInt;
  Height: LongInt;
  Format: TImageFormat;
  Size: LongInt;
  Bits: Pointer;
  Palette: PPalette32;
  end;
File

ImagingTypes (at line 337)

Members
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 
Related Information
You are here: Symbol Reference > Structs, Records, Enums > TImageData Record