LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
CanvasCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : CanvasCommandFlags Enumeration



Flags that identify how to distribute the canvas image with respect to the image and how to handle resizing.

Syntax

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

Members

MemberDescription
ResizeBicubicUse bicubic interpolation and averaging to produce a higher quality image. This is slower than ResizeResample.
ResizeNormalResize normally.
ResizeResampleUse linear interpolation and averaging to produce a higher quality image.
TileFitFit the canvas image so it has the same dimensions as the image that is being applied to the canvas, without tiling.
TileShiftShift the canvas image by the amount specified in TilesOffset.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
canvas image distribution TileFit TileShift
Resizing interpolation ResizeNormal ResizeResample ResizeBicubic

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.CanvasCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also