←Select platform

HighQualityRotateCommandFlags Enumeration

Summary

Options for the HighQualityRotateCommand class.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
[FlagsAttribute()] 
public enum HighQualityRotateCommandFlags   
<FlagsAttribute()> 
Public Enum HighQualityRotateCommandFlags  
    
    
[FlagsAttribute()] 
public enum HighQualityRotateCommandFlags    
typedef NS_OPTIONS(NSUInteger, LTHighQualityRotateCommandFlags) 
public enum HighQualityRotateCommandFlags 
Leadtools.ImageProcessing.Core.HighQualityRotateCommandFlags = function() { }; 
Leadtools.ImageProcessing.Core.HighQualityRotateCommandFlags.prototype = {<br/> 
  Crop = 0x00000000, 
    Fastest = 0x00000000, 
    None = 0x00000000, 
    Resize = 0x00000001, 
    BestQuality = 0x00000010, 
     
 }; 
[FlagsAttribute()] 
public enum class HighQualityRotateCommandFlags   

Members

ValueMemberDescription
0x00000000Crop 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 usedThis flag cannot be ORed with Resize.
0x00000000Fastest Use fastest interpolation possible (Bilinear) when rotating.This flag cannot be ORed with BestQuality
0x00000000None 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
0x00000001Resize 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
0x00000010BestQuality Use highest quality interpolation possible (Bicubic) when rotating.This flag cannot be ORed with Fastest
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.

Example

For an example, refer to HighQualityRotateCommand.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly