LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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. Supported in Silverlight, Windows Phone 7

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

See Also