←Select platform

Brightness Property

Summary
Gets or sets a value that represents the amount to change the intensity.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public int Brightness { get; set; } 
@property (nonatomic, assign) NSInteger brightness; 
public int getBrightness(); 
public void setBrightness( 
   int intValue 
); 
public: 
property int Brightness { 
   int get(); 
   void set (    int ); 
} 
Brightness # get and set (ChangeIntensityCommand) 

Property Value

Amount to change the intensity. The intensity ranges from -1000 to 1000. A positive value increases (or lightens) the brightness of the image. A negative values decreases (or darkens) the brightness of the image.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void ChangeIntensityCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image1.jpg")); 
 
   // Prepare the command 
   ChangeIntensityCommand command = new ChangeIntensityCommand(); 
   //Increase the brightness by 25 percent  of the possible range. 
   command.Brightness = 250; 
   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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Color Assembly

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