Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
RotateCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing Namespace : RotateCommandFlags Enumeration




Flags for the RotateCommand.Flags property.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum RotateCommandFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As RotateCommandFlags
C# 
[FlagsAttribute()]
public enum RotateCommandFlags : Enum 
Managed Extensions for C++ 
[FlagsAttribute()]
__value public enum RotateCommandFlags : public Enum 
C++/CLI 
[FlagsAttribute()]
public enum class RotateCommandFlags : public Enum 

Members

MemberDescription
None Default, do not resize the image, crop it.
Resize Size resulting image as needed.
Resample Perform bilinear interpolation when rotating.
Bicubic Perform bicubic interpolation when rotating.

Remarks

RotateCommandFlags.Resample and RotateCommandFlags..Bicubic can be combined with RotateCommandFlags.Resize, but they can not be combined with each other. Therefore, you can pass RotateCommandFlags.Resample Or RotateCommandFlags.Resize, but not RotateCommandFlags.Resample | RotateCommandFlags..Bicubic.

If RotateCommandFlags.Resize is set, then the image is resized. Otherwise, the image is cropped.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.RotateCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also