Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.10
DeskewCommand Constructor(RasterColor,DeskewCommandFlags)
See Also 
Leadtools.ImageProcessing.Core Namespace > DeskewCommand Class > DeskewCommand Constructor : DeskewCommand Constructor(RasterColor,DeskewCommandFlags)




fillColor
Used to fill the background following rotation. This is used only if DeskewCommandFlags.FillExposedArea is set in the flags parameter.
flags
Flags that 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 to use, whether the image contains mostly text, and whether to use normal or fast rotation.
Initializes a new DeskewCommand class object with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal fillColor As RasterColor, _
   ByVal flags As DeskewCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim fillColor As RasterColor
Dim flags As DeskewCommandFlags
 
Dim instance As DeskewCommand(fillColor, flags)
C# 
public DeskewCommand( 
   RasterColor fillColor,
   DeskewCommandFlags flags
)
Managed Extensions for C++ 
public: DeskewCommand( 
   RasterColor fillColor,
   DeskewCommandFlags flags
)
C++/CLI 
public:
DeskewCommand( 
   RasterColor fillColor,
   DeskewCommandFlags flags
)

Parameters

fillColor
Used to fill the background following rotation. This is used only if DeskewCommandFlags.FillExposedArea is set in the flags parameter.
flags
Flags that 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 to use, whether the image contains mostly text, and whether to use normal or fast rotation.

Example

Refer to DeskewCommand.

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