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