LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
HighQualityRotateCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : HighQualityRotateCommandFlags Enumeration



Options for the HighQualityRotateCommand class.Supported in Silverlight, Windows Phone 7

Syntax

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

Members

MemberDescription
BestQuality

Use highest quality interpolation possible (Bicubic) when rotating.

This flag cannot be ORed with Fastest

Crop

Crop the resulting image. Since a Leadtools.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.

Fastest

Use fastest interpolation possible (Bilinear) when rotating.

This flag cannot be ORed with BestQuality

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

Resize

Size the resulting image as needed. Since a Leadtools.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

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: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also