FMX.PixelFormats.AlphaColorToScanline
Delphi
procedure AlphaColorToScanline(Source, Dest: Pointer; PixelCount: Integer; DestFormat: TPixelFormat);
C++
extern DELPHI_PACKAGE void __fastcall AlphaColorToScanline(void * Source, void * Dest, int PixelCount, TPixelFormat DestFormat);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.PixelFormats.pas FMX.PixelFormats.hpp |
FMX.PixelFormats | FMX.PixelFormats |
Description
Converts an array of contiguous pixels in 32-bit A8R8G8B8 format into a specified pixel format.
Source
points to the first pixel in the input array.
Dest
points to the first pixel in the output array.
PixelCount
specifies the number of pixels to be converted.
DestFormat
specifies the TPixelFormat of the Dest
pixels.