#include "l_bitmap.h"
L_LTKRN_API L_INT L_GetOverlayCount (pBitmap, puCount, uFlags)
pBITMAPHANDLE pBitmap; |
pointer to the main bitmap handle |
L_UINT *puCount; |
variable to be updated with the overlay count |
L_UINT uFlags; |
reserved for future use |
Gets the number of overlays that have been defined for the specified main bitmap.
Parameter |
Description |
pBitmap |
Pointer to the bitmap handle referencing the main bitmap. |
puCount |
Pointer to a variable to be updated with the number of overlays. |
uFlags |
Reserved for future use. Pass 0. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
This function will count how many overlays have been defined. The overlays are defined by calling L_SetOverlayBitmap or L_SetOverlayAttributes.
Required DLLs and Libraries
For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64, Linux.
This example will return the count of the overlays from pBitmap.
L_INT GetOverlayCountExample(pBITMAPHANDLE pBitmap)
{
L_INT nRet;
L_UINT uCount;
nRet = L_GetOverlayCount(pBitmap, &uCount, 0);
if(nRet != SUCCESS)
return nRet;
/* now uCount contains the number of overlays */
return SUCCESS ;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET