#include "l_bitmap.h"
L_LTFIL_API L_INT L_CreateMarkers(phMarkers)
Creates an empty marker collection.
Pointer to a variable to be updated with a handle to an empty marker collection.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Markers can be added to the collection using L_InsertMarker function.
When the marker collection handle is no longer needed, free it by calling L_FreeMarkers.
Required DLLs and Libraries
Win32, x64, Linux.
This example will copy all APPn markers from one marker collection to another
L_INT EXT_CALLBACK MyCopyCallback(L_UINT uMarker,
L_UINT uMarkerSize,
L_UCHAR * pMarkerData,
L_VOID * pUserData,
LEADMARKERCALLBACK pfnLEADCallback,
L_VOID * pLEADUserData)
{
UNREFERENCED_PARAMETER(pfnLEADCallback);
UNREFERENCED_PARAMETER(pUserData);
UNREFERENCED_PARAMETER(pMarkerData);
// is it a APPn marker?
if(uMarker >= 0xE0 && uMarker < 0xF0)
{
// just insert all the markers in the destination collection list
// L_InsertMarker will never return SUCCESS_IGNOREMARKER, so the source collection list will not be changed.
return L_InsertMarker((L_HANDLE)pLEADUserData, 0xFFFFFFFF, uMarker, uMarkerSize, pMarkerData);
}
return SUCCESS;
}
L_INT CreateMarkersExample(HANDLE hSrcMarkers, HANDLE * phDstMarkers)
{
L_INT nRet;
nRet = L_CreateMarkers(phDstMarkers);
if(nRet != SUCCESS)
return nRet;
// copy the APPn markers from hSrcMarkers
nRet = L_EnumMarkers(hSrcMarkers, 0, MyCopyCallback, (L_VOID *)*phDstMarkers);
if(nRet != SUCCESS)
{
// An error occurred. Free the marker list we have created
L_FreeMarkers(*phDstMarkers);
*phDstMarkers = NULL;
}
return nRet;
}
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