←Select platform

SampleColor Property

Summary
Gets or sets the sample color.
Syntax
C#
C++/CLI
Python
public RasterColor SampleColor { get; set; } 
public: 
property RasterColor SampleColor { 
   RasterColor get(); 
   void set (    RasterColor ); 
} 
SampleColor # get and set (SampleTargetCommand) 

Property Value

Color value that represents the sample color. The red value for red channel, green value for green channel, blue value for blue channel.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void SampleTargetCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   SampleTargetCommand command = new SampleTargetCommand(); 
   command.SampleColor = new RasterColor(50, 100, 150); 
   command.TargetColor = new RasterColor(60, 90, 150); 
   command.Flags = SampleTargetCommandFlags.Red | SampleTargetCommandFlags.High; 
   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:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.3.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 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.