Declaration ​
pascal
procedure CopyMapTo(Dst: TCustomBitmap32); virtual;Parameters ​
| Parameter | Type | Description |
|---|---|---|
Dst | TCustomBitmap32 | Destination bitmap receiving the raw pixel buffer copy. |
Description ​
CopyMapTo resizes Dst to match this bitmap's dimensions and performs a direct block memory copy of the 32-bit pixel array.
Example ​
pascal
Bitmap.CopyMapTo(TargetBitmap);