LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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 System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As SliceCommandFlags
C# 
[FlagsAttribute()]
public enum SliceCommandFlags : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class SliceCommandFlags : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
BicubicPerform bicubic interpolation when rotating.
CutSlicesCut the slice from its original image. Send a pointer to the created image to the callback sliceImage parameter.
DeskewImageDo not Deskew.
NormalDo not perform any interpolation methods when rotating.
ResamplePerform bilinear interpolation when rotating.
WithoutCutDo not cut the slice from its original image. Send the null value to the callback sliceImage parameter.
WithoutDeskewImageDeskew the sliced image.

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

See Also