LBitmapBase::GetColorOrder

#include "ltwrappr.h"

L_INT LBitmapBase::GetColorOrder(void)

Retrieves the color order of the class object’s bitmap.

Returns

The color order of the bitmap data. Possible values are:

Value

Meaning

ORDER_RGB

[0] Red, green, and blue color order in memory.

ORDER_BGR

[1] Blue, green, and red color order in memory.

ORDER_GRAY

[2] 12 or 16-bit grayscale image. 12 and 16-bit grayscale images are only supported in the Document/Medical toolkits.

ORDER_RGBORGRAY

[3] Load the image as red, green, blue OR as a 12 or 16-bit grayscale image. 12 and 16-bit grayscale images are supported in the Document/Medical toolkits only.

ORDER_BGRORGRAY

[4] Load the image as blue, green, red OR as a 12 or 16-bit grayscale image. 12 and 16-bit grayscale images are supported in the Document/Medical toolkits only.

Comments

Use this function to retrieve the color order of the bitmap.

Required DLLs and Libraries

LTDIS
LTFIL

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Elements:

Class Members

Example

LBitmapBase MyBitmap;
L_INT nOrder;

MyBitmap.Load(TEXT("image1.cmp"));
nOrder=MyBitmap.GetColorOrder();