#include "Ltdic.h"
L_UINT16 LDicomDS::ConvertDicomAnnObjToLEADAnnObj(phAnnObject, pGraphicObject, pTextObject)
Converts a DICOM graphic or text annotation object into a LEAD annotation object.
Address of the variable to be updated with the handle to the LEAD annotation object.
Pointer to a DICOMGRAPHICOBJECT structure, which holds the attributes of a DICOM graphic annotation object to be converted. Pass NULL if you are converting a DICOM text annotation object.
Pointer to a DICOMTEXTOBJECT structure, which holds the attributes of a DICOM text annotation object to be converted. Pass NULL if you are converting a DICOM graphic annotation object.
Value | Meaning |
---|---|
0 | SUCCESS |
>0 | An error occurred. Refer to Return Codes. |
This function will convert a DICOM Annotation object into a LEAD annotation object.
If you are converting a DICOM graphic object, pGraphicObject should be valid and pTextObject should be set to NULL.
If you are converting a DICOM text object, pTextObject should be valid and pGraphicObject should be set to NULL.
pGraphicObject and pTextObject cannot both be valid or both be NULL at the same time.
Required DLLs and Libraries
Win32, x64
L_INT LDicomDS_ConvertDicomAnnObjToLEADAnnObjExample(LDicomDS& PresStateDS, pDICOMGRAPHICOBJECT pGraphicObject,pHANNOBJECT phAnnObject)
{
L_INT nRet;
nRet = PresStateDS.ConvertDicomAnnObjToLEADAnnObj(phAnnObject, pGraphicObject, NULL);
if (nRet == DICOM_SUCCESS)
{
MessageBox( NULL,
TEXT("DICOM annotation object has been successfully converted into LEAD object."),
TEXT("Note"),
MB_OK);
}
return DICOM_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