←Select platform

HighQualityRotateCommandFlags Enumeration

Summary

Options for the HighQualityRotateRequest class.

Syntax

C#
VB
C++
[DataContractAttribute(Namespace="http://Leadtools.Services.ImageProcessing.DataContracts/2009/01", Name="HighQualityRotateFlags")] 
[FlagsAttribute()] 
public enum HighQualityRotateCommandFlags 
  
<FlagsAttribute()> 
<DataContractAttribute(Namespace="http://Leadtools.Services.ImageProcessing.DataContracts/2009/01", Name="HighQualityRotateFlags")> 
Public Enum HighQualityRotateCommandFlags  
   Inherits System.Enum 
   Implements System.IComparable, System.IConvertible, System.IFormattable  
[FlagsAttribute()] 
[DataContractAttribute(Namespace="http://Leadtools.Services.ImageProcessing.DataContracts/2009/01", Name="HighQualityRotateFlags")] 
public enum class HighQualityRotateCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable   

Members

ValueMemberDescription
0x00000000None

Default, do not resize the image, crop it and use fast rotation over optimal quality. This is the same as specifying the Crop | Fastest flags.

0x00000000Crop

Crop the resulting image. Since the image 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 HighQualityRotateRequest.FillColor will not be used.

This flag cannot be OR'ed{|} with Resize.

0x00000000Fastest

Use fastest interpolation possible (Bilinear) when rotating.

This flag cannot be OR'ed{|} with BestQuality.

0x00000001Resize

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

This flag cannot be OR'ed{|} with Crop.

0x00000010BestQuality

Use highest quality interpolation possible (Bicubic) when rotating.

This flag cannot be OR'ed{|} 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 HighQualityRotateRequest.Flags property.

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.Services.ImageProcessing.DataContracts Assembly