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



Flags that indicate how to apply the effect, and which layout pattern to use for the noise.

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

Syntax

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

Members

MemberDescription
PF_CircleLay out the noise in concentric circles. Set the center for the circle using xCircle and yCircle.
PF_CombineCombine the noise and the image pixels using the Opacity value.
PF_DifferenceApply the difference between the noise and the image pixels.
PF_LineLay out the noise in lines at a 45 degree angle.
PF_PureProduce noise as a new image.
PF_RandomLay out the noise randomly.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Flags that indicate how to apply the effect PF_Pure, PF_Combine, PF_Difference
Flags that indicate which layout pattern to use for the noise PF_Circle, PF_Line, PF_Random

Inheritance Hierarchy

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

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