Leadtools.ImageProcessing.Color Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.10
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.

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 ColorIntensityBalanceCommandData(red, green, blue)
C# 
public ColorIntensityBalanceCommandData( 
   int red,
   int green,
   int blue
)
Managed Extensions for 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: 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