ChangeSaturationCommand Class (original) (raw)
Summary
Increases or decreases the saturation of colors in an image.
Syntax
C#
Objective-C
C++/CLI
Java
Python
@interface LTChangeSaturationCommand : LTRasterCommand
public class ChangeSaturationCommand
extends RasterCommand
class ChangeSaturationCommand(RasterCommand):
Example
Run the ChangeSaturationCommand on an image and increase its color saturation.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Color;
public void ChangeSaturationCommandExample()
{
// 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
ChangeSaturationCommand command = new ChangeSaturationCommand();
//Increase the color saturation by 25 percent of the possible range.
command.Change = 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";
}