Initializes a new ChangeHueSaturationIntensityCommand class object with explicit parameters.
public ChangeHueSaturationIntensityCommand(
int hue,
int saturation,
int intensity,
Leadtools.Imageprocessing.Color.ChangeHueSaturationIntensityCommandData[] data
)
Public Function New( _
ByVal hue As Integer, _
ByVal saturation As Integer, _
ByVal intensity As Integer, _
ByVal data() As Leadtools.Imageprocessing.Color.ChangeHueSaturationIntensityCommandData _
)
public ChangeHueSaturationIntensityCommand(
int hue,
int saturation,
int intensity,
Leadtools.Imageprocessing.Color.ChangeHueSaturationIntensityCommandData[] data
)
- (instancetype)initWithHue:(NSInteger)hue
saturation:(NSInteger)saturation
intensity:(NSInteger)intensity
data:(NSArray<LTChangeHueSaturationIntensityCommandData *> *)data
public ChangeHueSaturationIntensityCommand(
int hue,
int saturation,
int intensity,
ChangeHueSaturationIntensityCommandData[] data
)
function ChangeHueSaturationIntensityCommand(
hue ,
saturation ,
intensity ,
data
)
public:
ChangeHueSaturationIntensityCommand(
int hue,
int saturation,
int intensity,
Leadtools.Imageprocessing.Color.array<ChangeHueSaturationIntensityCommandData^>^ data
)
hue
Angular amount to change the hue, in hundredths of a degree. Valid values range from -18000 through 18000. This value is divided internally by 100.
saturation
Percentage amount to change saturation, in tenths of a percent. Valid values range from -1000 through 1000. This value is divided internally by 10. Negative values decrease the saturation of colors. Positive values increase the saturation. The saturation level is increased or decreased by a percentage of its present saturation level. For example, an increase of 20 of the current saturation level "L" will raise the new saturation level "L1" to a value L = 0.20 * L. Likewise, increasing the saturation level 100 doubles the saturation level (L1 = L + 1.0 * L). Decreasing the saturation level 100 will set the new saturation level to 0. This process is carried out for every pixel. The saturation is set to 1000 (maximum value) if the new value exceeds 1000).
intensity
Percentage amount to change the intensity , in tenths of a percent. Valid values range from -1000 (black) through 1000 (white). This value is divided internally by 10. Positive values increase (or lighten) the brightness of the image. Negative values decrease (or darken) the brightness of the image.
data
An array of ChangeHueSaturationIntensityCommandData classes that provides information about the color ranges used by this method.
Run the ChangeHueSaturationIntensityCommand on an image to change its hue, saturation, and brightness and change the red color to green.
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Color
Public Sub ChangeHueSaturationIntensityConstructorExample()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image1.jpg"))
' Prepare the command
Dim Data() As ChangeHueSaturationIntensityCommandData
ReDim Data(0)
Data(0) = New ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15)
Dim command As ChangeHueSaturationIntensityCommand = New ChangeHueSaturationIntensityCommand(0, 0, 0, Data)
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:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Color;
public void ChangeHueSaturationIntensityConstructorExample()
{
// 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
ChangeHueSaturationIntensityCommandData[] data = new ChangeHueSaturationIntensityCommandData[1];
data[0] = new ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15);
ChangeHueSaturationIntensityCommand command = new ChangeHueSaturationIntensityCommand(0, 0, 0, data);
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 ChangeHueSaturationIntensityConstructorExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
// Load the image
string srcFileName = @"Assets\Image1.cmp";
StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));
// Prepare the command
ChangeHueSaturationIntensityCommandData[] data = new ChangeHueSaturationIntensityCommandData[1];
data[0] = new ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15);
ChangeHueSaturationIntensityCommand command = new ChangeHueSaturationIntensityCommand(0, 0, 0, data);
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 ChangeHueSaturationIntensityConstructorExample(RasterImage image, Stream outStream)
{
// Prepare the command
ChangeHueSaturationIntensityCommandData[] data = new ChangeHueSaturationIntensityCommandData[1];
data[0] = new ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15);
ChangeHueSaturationIntensityCommand command = new ChangeHueSaturationIntensityCommand();
command.Data = data;
command.Hue = 0;
command.Intensity = 0;
command.Saturation = 0;
command.Run(image);
// Save result image
RasterCodecs codecs = new RasterCodecs();
codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24);
image.Dispose();
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Color
Public Sub ChangeHueSaturationIntensityConstructorExample(ByVal image As RasterImage, ByVal outStream As Stream)
' Prepare the command
Dim data As ChangeHueSaturationIntensityCommandData() = New ChangeHueSaturationIntensityCommandData(0){}
data(0) = New ChangeHueSaturationIntensityCommandData(18000, 0, 0, 315, 45, 345, 15)
Dim command As ChangeHueSaturationIntensityCommand = New ChangeHueSaturationIntensityCommand()
command.Data = data
command.Hue = 0
command.Intensity = 0
command.Saturation = 0
command.Run(image)
' Save result image
Dim codecs As RasterCodecs = New RasterCodecs()
codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24)
image.Dispose()
End Sub
ChangeHueSaturationIntensityCommand Class
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.