Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.11
AgingCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : AgingCommandFlags Enumeration




Flags that indicate the distortion type and the distortion color.

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

Syntax

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

Members

MemberDescription
AddNothing Do not add any distortion type. In this case, the image will be changed by random changes in the color intensity.
AddVerticalScratch Add vertical scratch lines.
AddHorizontalScratch Add horizontal scratch lines.
AddDust Add dust.
AddPits Add pits.
ScratchInverse Use the pixel's color inverse as the scratch line color. If this flag is set, ScratchColor will be ignored.
ScratchColor Use the value in ScratchColor as the scratch line color.
DustInverse Use the pixel's color inverse as the dust color. If this flag is set, DustColor will be ignored.
DustColor Use the value in DustColor as the dust color.
PitsInverse Use the pixel's color inverse as the color of the pits. If this flag is set, PitsColor will be ignored.
PitsColor Use the value in PitsColor as the color of the pits.

Remarks

You can use a bitwise OR (|) to specify one or more flag(s) from each group.
GroupFlags
Flags that indicate the distortion typeAddNothing, AddVerticalScratch, AddHorizontalScratch, AddDust, AddPits
Flags that indicate the distortion colorScratchInverse, 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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also