#include "l_bitmap.h"
L_LTFIL_API L_INT L_LoadMarkers(pszFilename, phMarkers, uFlags)
Loads metadata markers (COM and APPn) into a handle.
Character string that contains the name of the file from which to load the collection of metadata markers.
Pointer to a variable to be updated with a handle to the collection of metadata markers. This handle is allocated by this function.
Reserved for future use. Pass 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The handle referenced by the phMarkers
parameter is allocated by this function. This handle can then be used to save the metadata information. For Exif files, this metadata handle will contain ALL the Exif and GPS comments, stored in APP1. It will also contain the audio information stored in APP2.
The markers can also be retrieved by calling L_TransformFile. Each retrieved marker is passed to the TRANSFORMFILECALLBACK function. There is one important difference between the markers passed to TRANSFORMFILECALLBACK and those loaded with L_LoadMarkers:
TRANSFORMFILECALLBACK receives ALL the markers (metadata and image-related markers).
L_LoadMarkers loads only the metadata markers.
When the marker collection handle is no longer needed, use the L_FreeMarkers function to free it.
To save the collection of metadata markers referenced by the handle in phMarkers
to a file, pass this handle to the L_SetMarkers function.
✅ IMPORTANT
The comments set with L_SetComment will OVERRIDE any comments contained in the metadata markers. For example, if the original file had an author of "Steve" and you call:
L\_SetComment(CMNT\_SZAUTHOR, TEXT("John"), 5);
the next time you save a file, the author will be John (not Steve). However, all the comments that have not been set will be taken from the metadata handle.
Required DLLs and Libraries
Win32, x64, Linux.
L_INT LoadMarkersExample(HWND hWnd,
L_TCHAR * pszSrc,
L_TCHAR * pszDest)
{
HANDLE hMarkers;
L_INT nRet;
FILEINFO info;
memset(&info, 0, sizeof (FILEINFO));
info.uStructSize = sizeof(FILEINFO);
nRet = L_FileInfo(pszSrc, &info, sizeof(FILEINFO), 0, NULL);
if (nRet != SUCCESS)
return nRet;
if (!L_MarkersSupported(info.Format))
return ERROR_FEATURE_NOT_SUPPORTED;
nRet = L_LoadMarkers(pszSrc, &hMarkers, 0);
if(nRet != SUCCESS)
{
MessageBox(hWnd, TEXT("Error loading markers"), TEXT("FAILURE"), MB_OK);
return nRet;
}
L_SetMarkers(hMarkers, 0);
nRet = L_FreeMarkers(hMarkers);
if(nRet != SUCCESS)
return nRet;
return L_WriteFileMetaData(pszDest, METADATA_ALL, NULL);
}
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