RemapIntensityCommandFlags Enumeration (original) (raw)
Summary
Flags that indicate the color plane to update, whether to change the high bit and whether the LookupTable contains normal or stretched data.
Syntax
C#
Objective-C
C++/CLI
Java
Python
[FlagsAttribute()]
public enum RemapIntensityCommandFlags
typedef NS_OPTIONS(NSUInteger, LTRemapIntensityCommandFlags)
public final class RemapIntensityCommandFlags
extends java.lang.Enum<RemapIntensityCommandFlags>
[FlagsAttribute()]
public enum class RemapIntensityCommandFlags
class RemapIntensityCommandFlags(Enum):
Master = 0
Red = 1
Green = 2
Blue = 3
ChangeHighBit = 16
Normal = 256
Members
Value | Member | Description |
---|---|---|
0x00000000 | Master | All channels. |
0x00000001 | Red | Red channel only. |
0x00000002 | Green | Green channel only. |
0x00000003 | Blue | Blue channel only. |
0x00000010 | ChangeHighBit | Change the high bit of the image according to the used data of the LookupTable. |
0x00000100 | Normal | The data in the LookupTable is normal data, in this case the LookupTable length should be equal to 2^(HighBit - LowBit + 1). |