Initializes a new BalanceColorsCommand with explicit parameters.
public BalanceColorsCommand(Leadtools.Imageprocessing.Color.BalanceColorCommandFactor redFactor,Leadtools.Imageprocessing.Color.BalanceColorCommandFactor greenFactor,Leadtools.Imageprocessing.Color.BalanceColorCommandFactor blueFactor)
Public Function New( _ByVal redFactor As Leadtools.Imageprocessing.Color.BalanceColorCommandFactor, _ByVal greenFactor As Leadtools.Imageprocessing.Color.BalanceColorCommandFactor, _ByVal blueFactor As Leadtools.Imageprocessing.Color.BalanceColorCommandFactor _)
public BalanceColorsCommand(Leadtools.Imageprocessing.Color.BalanceColorCommandFactor redFactor,Leadtools.Imageprocessing.Color.BalanceColorCommandFactor greenFactor,Leadtools.Imageprocessing.Color.BalanceColorCommandFactor blueFactor)
- (instancetype)initWithRedFactor:(LTBalanceColorCommandFactor *)redFactorgreenFactor:(LTBalanceColorCommandFactor *)greenFactorblueFactor:(LTBalanceColorCommandFactor *)blueFactor
public BalanceColorsCommand(BalanceColorCommandFactor redFactor,BalanceColorCommandFactor greenFactor,BalanceColorCommandFactor blueFactor)
function BalanceColorsCommand(redFactor ,greenFactor ,blueFactor)
public:BalanceColorsCommand(Leadtools.Imageprocessing.Color.BalanceColorCommandFactor^ redFactor,Leadtools.Imageprocessing.Color.BalanceColorCommandFactor^ greenFactor,Leadtools.Imageprocessing.Color.BalanceColorCommandFactor^ blueFactor)
redFactor
BalanceColorCommandFactor class that contains the values to use for redistributing the image's red values. Valid values for all class members must be within the range : 0.0 - 100.0.
greenFactor
BalanceColorCommandFactor class that contains the values to use for redistributing the image's green values. Valid values for all class members must be within the range : 0.0 - 100.0.
blueFactor
BalanceColorCommandFactor class that contains the values to use for redistributing the image's blue values. Valid values for all class members must be within the range : 0.0 - 100.0.
Run the BalanceColorsCommand on an image.
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.ColorPublic Sub BalanceColorsConstructorExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image2.jpg"))' Prepare the commandDim RedFactor As BalanceColorCommandFactor = New BalanceColorCommandFactorDim GreenFactor As BalanceColorCommandFactor = New BalanceColorCommandFactorDim BlueFactor As BalanceColorCommandFactor = New BalanceColorCommandFactorRedFactor.ToRed = 0.2RedFactor.ToGreen = 0.3RedFactor.ToBlue = 0.5GreenFactor.ToRed = 0.3GreenFactor.ToGreen = 0.1GreenFactor.ToBlue = 0.6BlueFactor.ToRed = 0.8BlueFactor.ToGreen = 0.1BlueFactor.ToBlue = 0.1Dim command As BalanceColorsCommand = New BalanceColorsCommand(RedFactor, GreenFactor, BlueFactor)command.Run(leadImage)codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Color;public void BalanceColorsConstructorExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image2.jpg"));// Prepare the commandBalanceColorCommandFactor RedFactor = new BalanceColorCommandFactor();BalanceColorCommandFactor GreenFactor = new BalanceColorCommandFactor();BalanceColorCommandFactor BlueFactor = new BalanceColorCommandFactor();RedFactor.ToRed = 0.2;RedFactor.ToGreen = 0.3;RedFactor.ToBlue = 0.5;GreenFactor.ToRed = 0.3;GreenFactor.ToGreen = 0.1;GreenFactor.ToBlue = 0.6;BlueFactor.ToRed = 0.8;BlueFactor.ToGreen = 0.1;BlueFactor.ToBlue = 0.1;BalanceColorsCommand command = new BalanceColorsCommand(RedFactor, GreenFactor, BlueFactor);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:\Users\Public\Documents\LEADTOOLS Images";}
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Color;public async Task BalanceColorsConstructorExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;// Load the imagestring srcFileName = @"Assets\Image1.cmp";StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));// Prepare the commandBalanceColorCommandFactor RedFactor = new BalanceColorCommandFactor();BalanceColorCommandFactor GreenFactor = new BalanceColorCommandFactor();BalanceColorCommandFactor BlueFactor = new BalanceColorCommandFactor();RedFactor.ToRed = 0.2;RedFactor.ToGreen = 0.3;RedFactor.ToBlue = 0.5;GreenFactor.ToRed = 0.3;GreenFactor.ToGreen = 0.1;GreenFactor.ToBlue = 0.6;BlueFactor.ToRed = 0.8;BlueFactor.ToGreen = 0.1;BlueFactor.ToBlue = 0.1;BalanceColorsCommand command = new BalanceColorsCommand(RedFactor, GreenFactor, BlueFactor);command.Run(image);string destFileName = @"result.jpg";StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);await codecs.SaveAsync(image, LeadStreamFactory.Create(saveFile), RasterImageFormat.Jpeg, 0);}
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Color;using Leadtools.Examples;public void BalanceColorsConstructorExample(RasterImage image, Stream outStream){// Prepare the commandBalanceColorCommandFactor RedFactor = new BalanceColorCommandFactor();BalanceColorCommandFactor GreenFactor = new BalanceColorCommandFactor();BalanceColorCommandFactor BlueFactor = new BalanceColorCommandFactor();RedFactor.ToRed = 0.2;RedFactor.ToGreen = 0.3;RedFactor.ToBlue = 0.5;GreenFactor.ToRed = 0.3;GreenFactor.ToGreen = 0.1;GreenFactor.ToBlue = 0.6;BlueFactor.ToRed = 0.8;BlueFactor.ToGreen = 0.1;BlueFactor.ToBlue = 0.1;BalanceColorsCommand command = new BalanceColorsCommand(RedFactor, GreenFactor, BlueFactor);command.Run(image);// Save result imageRasterCodecs codecs = new RasterCodecs();codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24);image.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.ColorPublic Sub BalanceColorsConstructorExample(ByVal image As RasterImage, ByVal outStream As Stream)' Prepare the commandDim RedFactor As BalanceColorCommandFactor = New BalanceColorCommandFactor()Dim GreenFactor As BalanceColorCommandFactor = New BalanceColorCommandFactor()Dim BlueFactor As BalanceColorCommandFactor = New BalanceColorCommandFactor()RedFactor.ToRed = 0.2RedFactor.ToGreen = 0.3RedFactor.ToBlue = 0.5GreenFactor.ToRed = 0.3GreenFactor.ToGreen = 0.1GreenFactor.ToBlue = 0.6BlueFactor.ToRed = 0.8BlueFactor.ToGreen = 0.1BlueFactor.ToBlue = 0.1Dim command As BalanceColorsCommand = New BalanceColorsCommand(RedFactor, GreenFactor, BlueFactor)command.Run(image)' Save result imageDim codecs As RasterCodecs = New RasterCodecs()codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24)image.Dispose()End Sub

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.