#include "l_bitmap.h"
L_LTKRN_API L_INT L_SetOverlayAttributes (pBitmap, nIndex, pOverlayAttributes, uFlags);
Sets the overlay attributes for the overlay at the specified index.
Pointer to the bitmap handle referencing the main bitmap.
The index of the overlay for which the attributes are being set. This index is zero-based.
Structure containing the overlay attributes to set.
Flags that determine which overlay attributes to set. You can or these flags. Possible values are:
Value | Meaning |
---|---|
OVERLAYATTRIBUTES_ORIGIN | [0x0001] The top-left position should be changed. pOverlayAttributes->ptOrigin contains the new top-left offset |
OVERLAYATTRIBUTES_COLOR | [0x0002] Indicates the color should be changed. pOverlayAttributes->crColor contains the new color |
OVERLAYATTRIBUTES_FLAGS | [0x0004] Indicates the flags should be changed. pOverlayAttributes->uFlags contains the new flags |
OVERLAYATTRIBUTES_BITINDEX | [0x0008] Indicates the corresponding bitplane position should be changed. pOverlayAttributes->uBitPosition contains the new bitplane index. |
OVERLAYATTRIBUTES_DICOM | [0x0010] Indicates that the DICOM-related attributes should be changed, this includes: |
pOverlayAttributes->uRows | |
pOverlayAttributes->uColumns | |
pOverlayAttributes->szType | |
pOverlayAttributes->uBitsAllocated | |
pOverlayAttributes->szDescription | |
pOverlayAttributes->szSubtype | |
pOverlayAttributes->szLabel | |
pOverlayAttributes->nROIArea | |
pOverlayAttributes->fROIMean | |
pOverlayAttributes->fROIStandardDeviation | |
pOverlayAttributes->nNumFramesInOverlay | |
pOverlayAttributes->uImageFrameOrigin | |
pOverlayAttributes->szActivationLayer |
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function can be used to set some or all the overlay attributes. Before calling this function, initialize pOverlayAttributes
->uStructSize to be sizeof(OVERLAYATTRIBUTES) and initialize all the attributes to be set or changed. You do not need to initialize the structure variables that you are not setting or changing. For example, if OVERLAYATTRIBUTES_ORIGIN is not set in uFlags
, you do not need to initialize pOverlayAttributes-> ptOrigin.
There are several attributes in uFlags and you cannot change only one flag. If you want to change only one flag, you will first have to get all the flags and change only the flag you want. See the example for more information.
Required DLLs and Libraries
Win32, x64, Linux.
For an example, refer to L_SetOverlayBitmap.
This example will change only one of the flag attributes for all the overlays.
Note that OverlayAttributes.uStructSize is not initialized directly. L_GetOverlayAttributes is initializing OverlayAttributes.uStructSize.
L_INT SetOverlayAttributesExample(HWND hWnd,
pBITMAPHANDLE pBitmap,
L_BOOL bShow)
{
L_INT nRet;
L_INT i;
OVERLAYATTRIBUTES OverlayAttributes;
for(i = 0; i < MAX_OVERLAYS; i++)
{
nRet = L_GetOverlayAttributes(pBitmap, i, &OverlayAttributes, sizeof(OverlayAttributes), OVERLAYATTRIBUTES_FLAGS);
if(nRet != SUCCESS)
return nRet;
if(bShow)
OverlayAttributes.uFlags |= OVERLAY_AUTOPAINT;
else
OverlayAttributes.uFlags &= ~OVERLAY_AUTOPAINT;
nRet = L_SetOverlayAttributes(pBitmap, i, &OverlayAttributes, OVERLAYATTRIBUTES_FLAGS);
if(nRet != SUCCESS)
return nRet;
}
InvalidateRect(hWnd, NULL, FALSE);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document