RasterByteOrder Enumeration (original) (raw)

Summary

Indicates the color byte order of the image data.

Syntax

C#

Objective-C

C++/CLI

Java

Python

public enum RasterByteOrder 

typedef NS_ENUM(NSInteger, LTRasterByteOrder) { LTRasterByteOrderRgb = 0, LTRasterByteOrderBgr = 1, LTRasterByteOrderGray = 2, LTRasterByteOrderRomm = 5, LTRasterByteOrderRgb565 = 7, };

public final class RasterByteOrder extends java.lang.Enum<RasterByteOrder>

public enum class RasterByteOrder   

class RasterByteOrder(Enum): Rgb = 0 Bgr = 1 Gray = 2 Romm = 5 Rgb565 = 7

Members

Value Member Description
0 Rgb RGB
1 Bgr BGR (inverse of RGB)
2 Gray Grayscale
5 Romm ROMM (BGR)
7 Rgb565 RGB 565 (Only for 16-bit color bitmaps)

Leadtools Assembly

Convert(byte[],int,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],int,int,int,RasterConvertBufferFlags) Method

Convert(byte[],int,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],RasterColor16[],RasterColor16[],int,int,int,RasterConvertBufferFlags) Method

Convert(IntPtr,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],int,int,int,RasterConvertBufferFlags) Method

Convert(IntPtr,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],RasterColor16[],RasterColor16[],int,int,int,RasterConvertBufferFlags) Method