Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
SliceCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : SliceCommandFlags Enumeration



Flags that indicate whether to deskew the sliced image, which type of interpolation to use when roating, and whether to cut the slice from the original image.

Syntax

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

Members

MemberDescription
DeskewImage Do not Deskew.
WithoutDeskewImage Deskew the sliced image.
Normal Do not perform any interpolation methods when rotating.
Resample Perform bilinear interpolation when rotating.
Bicubic Perform bicubic interpolation when rotating.
WithoutCut Do not cut the slice from its original image. Send the null value to the callback sliceImage parameter.
CutSlices Cut the slice from its original image. Send a pointer to the created image to the callback sliceImage parameter.

Remarks

You can use a bitwise OR (|) to specify one or more flags.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.SliceCommandFlags

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