Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum HighQualityRotateCommandFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum HighQualityRotateCommandFlags : Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class HighQualityRotateCommandFlags : public Enum |
Member | Description |
---|---|
None | Default value. Do not resize the image. Crop it and use fast rotation as opposed to optimal quality. This is the same as specifying the Crop | Fastest flags |
Crop | Crop the resulting image. Since a RasterImage is always a rectangular object, rotation will always increase the width and
height of the image. Specifying this flag will keep the original image size by cropping the extra size resulting from the rotation operation.
The value specified in HighQualityRotateCommand.FillColor will not be used This flag cannot be ORed with Resize. |
Resize | Size the resulting image as needed. Since a RasterImage is always a rectangular object, rotation will always increase the width
and height of the image. Specifying this flag will increase the size of the image and fill the extra space with the value specified in the
HighQualityRotateCommand.FillColor property. This flag cannot be ORed with Crop |
Fastest | Use fastest interpolation possible (Bilinear) when rotating. This flag cannot be ORed with BestQuality |
BestQuality | Use highest quality interpolation possible (Bicubic) when rotating. This flag cannot be ORed with Fastest |
For an example, refer to HighQualityRotateCommand.
You can use a bitwise OR (|) to specify one or more flags.
The HighQualityRotateCommandFlags enumeration is used as the type for the HighQualityRotateCommand.Flags property.
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Core.HighQualityRotateCommandFlags
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