Create allocates memory for the pixel buffer and initializes internal backend interfaces.
Example ​
pascal
var
Bmp: TBitmap32;
begin
// Create a 800x600 bitmap and fill it with the color red
Bmp := TBitmap32.Create(800, 600);
try
Bmp.Clear(clRed32);
finally
Bmp.Free;
end;
end;