Description | Hierarchy | Fields | Methods | Properties |
type TAdBMPImage = class(TObject)
Class that is able to load and save Windows bitmaps
![]() |
constructor Create; |
![]() |
destructor Destroy; override; |
![]() |
procedure LoadFromStream(AStream: TStream); |
![]() |
procedure LoadFromFile(const Filename: string); |
![]() |
procedure SaveToStream(AStream: TStream); |
![]() |
procedure SaveToFile(const Filename: string); |
![]() |
property Width: integer read GetWidth; |
![]() |
property Height: integer read GetHeight; |
![]() |
property Bitmap: TAdBitmap read FBitmap write SetBitmap; |
![]() |
property Header: TAdBitmapInfoHeader read FBMPInfoHeader; |
![]() |
constructor Create; |
Creates an instance of TAdBMPImage. |
![]() |
destructor Destroy; override; |
Destroys the instance of TAdBMPImage. |
![]() |
procedure LoadFromStream(AStream: TStream); |
Loads the BMP image from a stream. |
![]() |
procedure LoadFromFile(const Filename: string); |
Loads the BMP image from a file. |
![]() |
procedure SaveToStream(AStream: TStream); |
Saves the BMP image to a stream. |
![]() |
procedure SaveToFile(const Filename: string); |
Saves the BMP image to a file. |
![]() |
property Width: integer read GetWidth; |
Returns the width of the currently loaded image. |
![]() |
property Height: integer read GetHeight; |
Returns the height of the currently loaded image. |
![]() |
property Bitmap: TAdBitmap read FBitmap write SetBitmap; |
The Andorra image wherefrom the image data is written to/read from. |
![]() |
property Header: TAdBitmapInfoHeader read FBMPInfoHeader; |
Access on the bitmap info header. |