Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
DeskewExtendedCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing Namespace : DeskewExtendedCommandFlags Enumeration



Flags for DeskewExtendedCommand.

Syntax

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

Members

MemberDescription
DeskewImage Deskew (rotate) the image.
ReturnAngleOnly Do not deskew (rotate) the image. Use this flag to find the angle of rotation.
FillExposedArea Use the color in fillColor to fill areas exposed by rotation.
DoNotFillExposedArea Find the suitable background color to fill areas exposed by rotation automatically. Ignore the DeskewExtendedCommand.FillColor parameter.
NoThreshold Deskew (rotate) the image for any deskew angle value.
Threshold Do not deskew the image if the deskew angle is very small (less than 0.5 degrees).
RotateLinear Do not perform interpolation when rotating.
RotateResample Perform bilinear interpolation when rotating.
RotateBicubic Perform bicubic interpolation when rotating.
DocumentImage The image contains only text.
DocumentAndPicture The image contains text and pictures.

Remarks

These flags indicate whether to deskew the image, which background color to use, whether to deskew the image if the skew angle is very small, which type of interpolation is to be used, and whether the image is mostly text or text and pictures.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.DeskewExtendedCommandFlags

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also