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



Flags that indicate the distortion type and the distortion color.

This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

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

Members

MemberDescription
AddDustAdd dust.
AddHorizontalScratchAdd horizontal scratch lines.
AddNothingDo not add any distortion type. In this case, the image will be changed by random changes in the color intensity.
AddPitsAdd pits.
AddVerticalScratchAdd vertical scratch lines.
DustColorUse the value in DustColor as the dust color.
DustInverseUse the pixel's color inverse as the dust color. If this flag is set, DustColor will be ignored.
PitsColorUse the value in PitsColor as the color of the pits.
PitsInverseUse the pixel's color inverse as the color of the pits. If this flag is set, PitsColor will be ignored.
ScratchColorUse the value in ScratchColor as the scratch line color.
ScratchInverseUse the pixel's color inverse as the scratch line color. If this flag is set, ScratchColor will be ignored.

Remarks

You can use a bitwise OR (|) to specify one or more flag(s) from each group.
Group Flags
Flags that indicate the distortion type AddNothing, AddVerticalScratch, AddHorizontalScratch, AddDust, AddPits
Flags that indicate the distortion color ScratchInverse, ScratchColor, DustInverse, DustColor, PitsInverse, PitsColor

Inheritance Hierarchy

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

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