ImageEn, unit iexHelperFunctions |
|
TBitmapHelper.IERotate
Declaration
procedure IERotate(Angle: double; AntiAliasMode: TIEAntialiasMode = ierFast; BackgroundColor: TColor = -1);
Description
Calls
Rotate to rotate a TBitmap.
Note:
◼You must add the iexHelperFunctions unit to your uses clause
◼Delphi/C++ 2005 or newer is required to use helper classes
// Rotate the image 90 deg. counter-clockwise
MyBitmap.IERotate(90);
// Rotate the image 45 deg. clockwise and fill new areas with black
MyBitmap.IERotate(315, ierFast, clBlack);