Available in LEADTOOLS Medical Imaging toolkits. |
#include "Ltdic.h"
L_UINT16 LDicomDS::ConvertDicomAnnObjToLEADAnnObj(phAnnObject, pGraphicObject, pTextObject)
pHANNOBJECT phAnnObject; |
/* address of the variable to be updated */ |
pDICOMGRAPHICOBJECT pGraphicObject; |
/* pointer to a DICOM graphic annotation object */ |
pDICOMTEXTOBJECT pTextObject; |
/* pointer to a DICOM text annotation object */ |
Converts a DICOM graphic or text annotation object into a LEAD annotation object.
Parameter |
Description |
phAnnObject |
Address of the variable to be updated with the handle to the LEAD annotation object. |
pGraphicObject |
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. |
pTextObject |
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. |
Returns
0 |
SUCCESS |
>0 |
An error occurred. Refer to Return Codes. |
Comments
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
LTDIC For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
Win32, x64
See Also
Functions: |
LDicomDS::ConvertLEADAnnObjToDicomAnnObjs, LDicomDS::ConvertLEADAnnObjToDicomAnnObjs, Class Members |
Topics: |
|
|
How to Disable the Automatic Loading of the default DICOM IOD Table |
Example
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; }