CodecsLoadByteOrder Enumeration (original) (raw)
Summary
Indicates the desired byte order when loading image files.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public enum CodecsLoadByteOrder
typedef NS_ENUM(NSInteger, LTCodecsLoadByteOrder) {
LTCodecsLoadByteOrderRgb = 0,
LTCodecsLoadByteOrderBgr = 1,
LTCodecsLoadByteOrderGray = 2,
LTCodecsLoadByteOrderRgbOrGray = 3,
LTCodecsLoadByteOrderBgrOrGray = 4,
LTCodecsLoadByteOrderRomm = 5,
LTCodecsLoadByteOrderBgrOrGrayOrRomm = 6,
};
public enum CodecsLoadByteOrder
public enum class CodecsLoadByteOrder
class CodecsLoadByteOrder(Enum):
Rgb = 0
Bgr = 1
Gray = 2
RgbOrGray = 3
BgrOrGray = 4
Romm = 5
BgrOrGrayOrRomm = 6
Members
Value | Member | Description |
---|---|---|
0 | Rgb | Red-green-blue order. |
1 | Bgr | Blue-green-red order. |
2 | Gray | 12 or 16-bit grayscale image. |
3 | RgbOrGray | Load the image as red, green, blue OR as a 12 or 16-bit grayscale image. |
4 | BgrOrGray | Load the image as blue, green, red OR as a 12 or 16-bit grayscale image. |
5 | Romm | ROMM order. ROMM only supports 24 and 48-bit images. |
6 | BgrOrGrayOrRomm | Load the image as red, green, blue OR as a 12 or 16-bit grayscale image OR as ROMM. ROMM only supports 24 and 48-bit color images. |
Leadtools.Codecs Assembly
CompactFile(Stream,Stream,int,int,bool,int,int,bool,int,CodecsSavePageMode,bool,bool) Method
CompactFile(Stream,Stream,int,int,bool,long,int,bool,long,CodecsSavePageMode,bool,bool,bool) Method
CompactFile(string,string,int,int,bool,int,int,bool,int,CodecsSavePageMode,bool,bool) Method
CompactFile(string,string,int,int,bool,long,int,bool,long,CodecsSavePageMode,bool,bool,bool) Method