LEADTOOLS Image Processing (Leadtools.ImageProcessing.Color assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
ColorIntensityBalanceCommandData Constructor(Int32,Int32,Int32)
See Also 



red
Value to be used for adjusting or balancing the red channel. Valid values range from -100 to 100. Values > 0 increase the red component. Values < 0 decrease the red component. Using 0 leaves the red component unchanged.
green
Value to be used for adjusting or balancing the green channel. Valid values range from -100 to 100. Values > 0 increase the green component value. Values < 0 decrease the green component value. Using 0 leaves the green component unchanged.
blue
Value to be used for adjusting or balancing the blue channel. Valid values range from -100 to 100. Values > 0 increase the blue component value. Values < 0 decrease the blue component value. Using 0 leaves the blue component unchanged.
Initializes a new ColorIntensityBalanceCommandData class with explicit parameters. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal red As Integer, _
   ByVal green As Integer, _
   ByVal blue As Integer _
)
Visual Basic (Usage)Copy Code
Dim red As Integer
Dim green As Integer
Dim blue As Integer
 
Dim instance As New ColorIntensityBalanceCommandData(red, green, blue)
C# 
public ColorIntensityBalanceCommandData( 
   int red,
   int green,
   int blue
)
C++/CLI 
public:
ColorIntensityBalanceCommandData( 
   int red,
   int green,
   int blue
)

Parameters

red
Value to be used for adjusting or balancing the red channel. Valid values range from -100 to 100. Values > 0 increase the red component. Values < 0 decrease the red component. Using 0 leaves the red component unchanged.
green
Value to be used for adjusting or balancing the green channel. Valid values range from -100 to 100. Values > 0 increase the green component value. Values < 0 decrease the green component value. Using 0 leaves the green component unchanged.
blue
Value to be used for adjusting or balancing the blue channel. Valid values range from -100 to 100. Values > 0 increase the blue component value. Values < 0 decrease the blue component value. Using 0 leaves the blue component unchanged.

Example

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also