LDicomDS::ConvertDicomAnnObjToLEADAnnObj

Summary

Converts a DICOM graphic or text annotation object into a LEAD annotation object.

Syntax

#include "Ltdic.h"

L_UINT16 LDicomDS::ConvertDicomAnnObjToLEADAnnObj(phAnnObject, pGraphicObject, pTextObject)

Parameters

pHANNOBJECT phAnnObject

Address of the variable to be updated with the handle to the LEAD annotation object.

pDICOMGRAPHICOBJECT 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.

pDICOMTEXTOBJECT 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

Value Meaning
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

Platforms

Win32, x64

See Also

Functions

Topics

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; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.