C#
VB
WinRT C#
C++
Enumerated values that indicate the channel for which to shift the color, and how to remap the other values for that channel. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[FlagsAttribute()]
public enum SampleTargetCommandFlags
<FlagsAttribute()>
Public Enum SampleTargetCommandFlags
[FlagsAttribute()]
public enum SampleTargetCommandFlags
Leadtools.ImageProcessing.Color.SampleTargetCommandFlags = function() { };
Leadtools.ImageProcessing.Color.SampleTargetCommandFlags.prototype = {<br/>
LeadtoolsMemberMarker(replace me)
};
[FlagsAttribute()]
public enum class SampleTargetCommandFlags
Members
Value | Member | Description |
---|---|---|
0x00000000 | None | Reserved. |
0x00000001 | Red | Shift the color in the red channel. |
0x00000002 | Green | Shift the color in the green channel. |
0x00000003 | Blue | Shift the color in the blue channel. |
0x00000004 | Rgb | Shift the color in the red, green, and blue channels. |
0x00000010 | Low | Remap the shadow values for the channel set in the flags parameter or the Flags property. |
0x00000020 | Mid | Remap the midtone values for the channel set in the flags parameter or the Flags property |
0x00000030 | High | Remap the highlight values for the channel set in the flags parameter or the Flags property |
You can use a bitwise OR ( ¦ ) to specify one flag from each group.
Group | Flags |
Flags that indicate the channel | Red, Green, Blue, Rgb |
Flags that indicate how other pixel values in the set channel will be affected | Low, Mid, High |
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