ImageEn, unit iexHelperFunctions

TBitmapHelper.IEInitialize

TBitmapHelper.IEInitialize


Declaration

procedure IEInitialize(iWidth, iHeight: Integer; ABackgroundColor : TColor = clNone);


Description

Resizes a bitmap and optionally fills it with the specified color.

Note:
You must add the iexHelperFunctions unit to your uses clause
Delphi/C++ 2005 or newer is required to use helper classes


Example

// Make a bitmap of screen size and black background
MyBitmap.IEInitialize(Screen.Width, Screen.Height, clBlack);