LBitmapBase::GetMemSize
#include "ltwrappr.h"
L_INT LBitmapBase::GetMemSize(void)
Retrieves the size of the memory allocated for the bitmap data.
Returns
The size of memory allocated for the bitmap data.
Comments
Use this function to retrieve the size of the memory allocated for the bitmap data.
Required DLLs and Libraries
LTDIS 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: |
Example
LBitmapBase MyBitmap;
L_UINT32 uMemSize;
MyBitmap.Load(TEXT("image1.cmp"));
uMemSize=MyBitmap.GetMemSize();