| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum RotateCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As RotateCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum RotateCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class RotateCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Bicubic | Perform bicubic interpolation when rotating. |
| None | Default, do not resize the image, crop it. |
| Resample | Perform bilinear interpolation when rotating. |
| Resize | Size resulting image as needed. |
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.
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.RotateCommandFlags
Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7
Copy Code