LBitmapBase::GetColorOrder

Summary

Retrieves the color order of the class objects bitmap.

Syntax

#include "ltwrappr.h"

L_INT LBitmapBase::GetColorOrder()

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

Platforms

Win32, x64.

See Also

Example

L_INT LBitmapBase__GetColorOrderExample() 
{ 
   L_INT nRet; 
   LBitmapBase MyBitmap; 
   L_INT nOrder; 
 
   nRet =MyBitmap.Load(MAKE_IMAGE_PATH(TEXT("image1.cmp"))); 
   if(nRet !=SUCCESS) 
      return nRet; 
   nOrder=MyBitmap.GetColorOrder(); 
 
 
   return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.