←Select platform

AdjustTintCommand Class

Summary
Adjusts the image tint by changing the colors in an image by using two separate color wheel rotations.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public class AdjustTintCommand : RasterCommand 
@interface LTAdjustTintCommand : LTRasterCommand 
public class AdjustTintCommand 
    extends RasterCommand 
public ref class AdjustTintCommand : public RasterCommand   
class AdjustTintCommand(RasterCommand): 
Remarks
  • This command changes the colors in an image by using two separate color wheel rotations. For the AdjustTintCommand.AngleA parameter, a positive rotation takes blue toward green and red, as shown in the following figure:

    adjusttint.jpg
    Negative rotation has the opposite effect. For the AdjustTintCommand.AngleB parameter, a positive rotation takes red toward green. Negative rotation has the opposite effect.
  • This command supports only colored 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.
  • Use the ChangeHueCommand to rotate the color wheel in either direction using one angle change that changes each color in the image. A 180-degree rotation in either direction changes each color to its complement. Positive rotation takes red toward green, green toward blue, and blue toward red. Negative rotation has the opposite effect.
  • This command does not support 32-bit grayscale images.

For more information, refer to Removing Noise.

Adjust Tint Function - Before

Adjust Tint Function - Before

Adjust Tint Function - After

Adjust Tint Function - After

View additional platform support for this Adjust Tint function.

Example

Run the AdjustTintCommand on an image and apply the Adjust Tint filter.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void AdjustTintCommandExample() 
{ 
   // 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 
   AdjustTintCommand command = new AdjustTintCommand(); 
   command.AngleA = -50; 
   command.AngleB = 1500; 
   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.