Leadtools.ImageProcessing.Color Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ColorIntensityBalanceCommand Class
See Also  Members   Example 



Changes the distribution of the red, green, or blue channels. This command is available in the Raster Pro and above toolkits.

Object Model




Syntax

Visual Basic (Declaration) 
Public Class ColorIntensityBalanceCommand 
   Inherits RasterCommand
   Implements IRasterCommand 
Visual Basic (Usage)Copy Code
Dim instance As ColorIntensityBalanceCommand
C# 
public class ColorIntensityBalanceCommand : RasterCommand, IRasterCommand  
C++/CLI 
public ref class ColorIntensityBalanceCommand : public RasterCommand, IRasterCommand  

Example

Run the ColorIntensityBalanceCommand on an image, and balance the colors by increasing the red channel values.

Visual BasicCopy Code
Public Sub ColorIntensityBalanceCommandExample()
   RasterCodecs.Startup()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg")

   ' Prepare the command
   Dim command As ColorIntensityBalanceCommand = New ColorIntensityBalanceCommand
   Dim Shadow As ColorIntensityBalanceCommandData = New ColorIntensityBalanceCommandData
   Dim MidTone As ColorIntensityBalanceCommandData = New ColorIntensityBalanceCommandData
   Dim HighLight As ColorIntensityBalanceCommandData = New ColorIntensityBalanceCommandData

   Shadow.Red = 60
   Shadow.Blue = 0
   Shadow.Green = 0

   MidTone.Red = 40
   MidTone.Blue = 0
   MidTone.Green = 0

   HighLight.Red = 70
   HighLight.Blue = 0
   HighLight.Green = 0

   command.Shadows = Shadow
   command.MidTone = MidTone
   command.HighLight = HighLight
   command.Luminance = False

   ' Balance the colors by increasing the red channel values.
   command.Run(leadImage)
   codecs.Save(leadImage, LeadtoolsExamples.Common.ImagesPath.Path + "Result.jpg", RasterImageFormat.Jpeg, 24)

   RasterCodecs.Shutdown()
End Sub
C#Copy Code
public void ColorIntensityBalanceCommandExample() 

   // Load an image 
   RasterCodecs.Startup(); 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg"); 
 
   // Prepare the command 
   ColorIntensityBalanceCommand command       = new ColorIntensityBalanceCommand(); 
   ColorIntensityBalanceCommandData Shadows   = new ColorIntensityBalanceCommandData(); 
   ColorIntensityBalanceCommandData MidTone   = new ColorIntensityBalanceCommandData(); 
   ColorIntensityBalanceCommandData HighLight = new ColorIntensityBalanceCommandData(); 
 
   Shadows.Red    = 60; 
   Shadows.Blue   = 0; 
   Shadows.Green  = 0; 
 
   MidTone.Red    = 40; 
   MidTone.Blue   = 0; 
   MidTone.Green  = 0; 
 
   HighLight.Red    = 70; 
   HighLight.Blue   = 0; 
   HighLight.Green  = 0; 
 
   command.Shadows   = Shadows; 
   command.MidTone   = MidTone; 
   command.HighLight = HighLight; 
   command.Luminance = false; 
 
   // Balance the colors by increasing the red channel values. 
   command.Run(image); 
   codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "Result.jpg", RasterImageFormat.Jpeg, 24); 
 
   RasterCodecs.Shutdown(); 
}

Remarks

  • This command changes the distribution of the red, green, or blue channels to make the colors in the image more accurate or more different.
  • Each color component is treated independently. The color range for each component is split into shadows, midtones and highlights based on the intensity. The values in each range are adjusted differently using the ColorIntensityBalanceCommandData classes. Positive values in a ColorIntensityBalanceCommandData class for a component cause that particular component to become brighter, whereas negative values cause the component to become darker. A value of 0 leaves the component unchanged.
  • The preserve luminance option aims to minimize the luminance change in the image.
  • This command supports only RGB images. It does not support grayscale images.
  • This command supports 48 and 64-bit color images. Support for 48 and 64-bit color images is available only in the Document/Medical toolkits.
  • This command does not support signed data images.
  • This command does not support 32-bit grayscale images.
For more information, refer to Changing Brightness and Contrast.
For more information, refer to Correcting Colors.

Inheritance Hierarchy

System.Object
   Leadtools.ImageProcessing.RasterCommand
      Leadtools.ImageProcessing.Color.ColorIntensityBalanceCommand

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