←Select platform

ColorIntensityBalanceCommand Constructor(ColorIntensityBalanceCommandData,ColorIntensityBalanceCommandData,ColorIntensityBalanceCommandData,bool)

Summary
Initializes a new ColorIntensityBalanceCommand class object with explicit parameters.
Syntax
C#
VB
Objective-C
C++
Java
Public Function New( _ 
   ByVal shadows As ColorIntensityBalanceCommandData, _ 
   ByVal midTone As ColorIntensityBalanceCommandData, _ 
   ByVal highLight As ColorIntensityBalanceCommandData, _ 
   ByVal luminance As Boolean _ 
) 
- (instancetype)initWithShadows:(LTColorIntensityBalanceCommandData *)shadows 
                        midTone:(LTColorIntensityBalanceCommandData *)midTone 
                      highLight:(LTColorIntensityBalanceCommandData *)highlight 
                      luminance:(BOOL)luminance 
public ColorIntensityBalanceCommand( 
   ColorIntensityBalanceCommandData shadows,  
   ColorIntensityBalanceCommandData midTone,  
   ColorIntensityBalanceCommandData highLight,  
   boolean luminance 
) 

Parameters

shadows
class used to adjust the dark tones.

midTone
class used to adjust the medium tones (midtones).

highLight
class used to adjust the bright tones (highlights).

luminance
Boolean flag that indicates whether to preserve luminance.

Value Meaning
true Preserve luminance.
false Do not preserve luminance.
Example

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

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
public void ColorIntensityBalanceConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   ColorIntensityBalanceCommandData Shadows = new ColorIntensityBalanceCommandData(60, 0, 0); 
   ColorIntensityBalanceCommandData MidTone = new ColorIntensityBalanceCommandData(40, 0, 0); 
   ColorIntensityBalanceCommandData HighLight = new ColorIntensityBalanceCommandData(70, 0, 0); 
   ColorIntensityBalanceCommand command = new ColorIntensityBalanceCommand(Shadows, MidTone, HighLight, false); 
   // Balance the colors by increasing the red channel values. 
   command.Run(image); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing.Color 
 
Public Sub ColorIntensityBalanceConstructorExample() 
   Dim codecs As New RasterCodecs() 
   codecs.ThrowExceptionsOnInvalidImages = True 
 
   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")) 
 
   ' Prepare the command 
   Dim Shadow As ColorIntensityBalanceCommandData = New ColorIntensityBalanceCommandData(60, 0, 0) 
   Dim MidTone As ColorIntensityBalanceCommandData = New ColorIntensityBalanceCommandData(40, 0, 0) 
   Dim HighLight As ColorIntensityBalanceCommandData = New ColorIntensityBalanceCommandData(70, 0, 0) 
   Dim command As ColorIntensityBalanceCommand = New ColorIntensityBalanceCommand(Shadow, MidTone, HighLight, False) 
 
   ' Balance the colors by increasing the red channel values. 
   command.Run(leadImage) 
   codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24) 
 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images" 
End Class 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Color Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.