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



Options for the HighQualityRotateCommand class.

Syntax

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

Members

MemberDescription
NoneDefault 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
CropCrop 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.

ResizeSize 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

FastestUse fastest interpolation possible (Bilinear) when rotating.

This flag cannot be ORed with BestQuality

BestQualityUse highest quality interpolation possible (Bicubic) when rotating.

This flag cannot be ORed with Fastest

Example

For an example, refer to HighQualityRotateCommand.

Remarks

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.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.HighQualityRotateCommandFlags

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