virtual L_INT LAnnContainer::Load(pFile, pLoadFileOption=NULL)
Loads the specified annotation file.
Character string containing the name of the file to load.
Pointer to optional extended load options. Pass NULL to use the default load options.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function will load annotations stored in LEAD files. It will also look for annotations stored as a Wang compatible TIFF tag in TIF files, and load those annotations.
The page number used when loading annotations is obtained from the LOADFILEOPTION structure.
Win32, x64.
L_INT LAnnContainer_LoadExample(HWND hWnd)
{
L_INT nRet;
LAnnContainer LeadAContainer ;
RECT rcClient ;
ANNRECT AnnRect ;
GetClientRect(hWnd,&rcClient) ;
AnnRect.left = rcClient.left + 15 ;
AnnRect.top = rcClient.top + 15 ;
AnnRect.right = rcClient.right - 15 ;
AnnRect.bottom = rcClient.bottom - 15;
nRet = LeadAContainer.Create(hWnd,&AnnRect,TRUE) ;
if(nRet != SUCCESS)
return nRet;
nRet = LeadAContainer.Save( MAKE_IMAGE_PATH(TEXT("TEST.ANN")));
if(nRet != SUCCESS)
return nRet;
//...
nRet = LeadAContainer.Load(MAKE_IMAGE_PATH(TEXT("TEST.ANN")));
if(nRet != SUCCESS)
return nRet;
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