TBitmap
Declaration
TBitmap = class(TGraphic)
Description
VCL class for handling bitmap images.
The ImageEn equivalent is
TIEBitmap.
See Also
◼ImageEn TBitmap Methods
◼VCL TBitmap Documentation
Example
// Output content of TImageEnView as a 32bit Bitmap with alpha channel
var
bmp: TBitmap;
begin
bmp := TBitmap.Create();
ImageEnView1.IEBitmap.SynchronizeRGBA( False, True ); // Convert 24bit Image + Alpha channel to 32bit RGBA
ImageEnView1.IEBitmap.CopyToTBitmap( bmp );
... bmp is now 32bit
bmp.Free();
end