LBitmapBase::Rotate

#include "ltwrappr.h"

virtual L_INT LBitmapBase::Rotate(nAngle, uFlags=ROTATE_RESIZE, crFill=0)

Rotates the class object's bitmap by the number of degrees specified.

Parameters

L_INT nAngle

Hundredths of degrees to rotate (+/-). This can be a number from 0 to 36,000. A positive value will rotate the image in a clockwise rotation, while a negative value will rotate the image in a counter-clockwise rotation.

L_UINT uFlags

Flag to keep the resulting image the same size as the original image or to resize according to the rotation direction specified. Valid values are:

Value Meaning
ROTATE_RESIZE [0x0001] Size resulting image as needed.
ROTATE_RESAMPLE [0x0002] Perform bilinear interpolation when rotating.
ROTATE_BICUBIC [0x0004] Perform bicubic interpolation when rotating.
0 Do not resize the image. Crop it.

COLORREF crFill

The background fill color. You can specify a COLORREF value, such as the return value of the Windows RGB macro, or you can use the PALETTEINDEX macro to specify a palette color.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

This function has the following features:

To update a status bar or detect a user interrupt during execution of this function, refer to LBase::EnableStatusCallBack.

ROTATE_RESAMPLE and ROTATE_BICUBIC can be combined with ROTATE_RESIZE, but they can not be combined with each other. Therefore, you can pass ROTATE_RESAMPLE|ROTATE_RESIZE, but not ROTATE_RESAMPLE|ROTATE_BICUBIC.

If ROTATE_RESIZE is set, then the image is resized. Otherwise, the image is cropped.

Interpolation can be done while rotating certain images. This produces superior output, eliminating the jaggedness occurring when rotating images at angles that are not multiple of 90. (ie when nAngle is not a multiple of 9000).

The only images that are interpolated are:

For the other images, LBitmapBase::Rotate ignores the resampling flags and the rotate is performed without interpolation.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LBitmapBase__RotateExample() 
{ 
   L_INT nRet; 
   LBitmapBase MyBitmap; 
 
   MyBitmap.SetFileName(MAKE_IMAGE_PATH(TEXT("image1.cmp")));  
   nRet =MyBitmap.Load(); 
   if(nRet !=SUCCESS) 
      return nRet; 
   if(MyBitmap.IsAllocated()) 
      nRet = MyBitmap.Rotate(4500,ROTATE_RESIZE, RGB(255, 0, 0)); 
 
   return nRet; 
} 
Help Version 20.0.2020.6.18
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help