LDicomDS::GetLayerImageRefSOPInstance

Summary

Returns the SOP Instance UID for a referenced image (SOP Instance) under the "Referenced Image Sequence" in a certain graphic annotation item inside the "Graphic Annotation Module".

Syntax

#include "Ltdic.h"

L_TCHAR *LDicomDS::GetLayerImageRefSOPInstance (pGraphicAnnSQItem, uImageIndex)

Parameters

pDICOMELEMENT pGraphicAnnSQItem

Pointer to an item element under the "Graphic Annotation Sequence" (0007,0001) in the "Graphic Annotation Module".

L_UINT uImageIndex

Index of the image(SOP Instance).

Returns

Value Meaning
!NULL SUCCESS
NULL An error occurred.

Comments

This function will return the "SOP Instance UID" for a referenced image (SOP Instance) under the "Referenced Image Sequence" (0008,1140) in one of the items under the "Graphic Annotation Sequence" (0007,0001) in the "Graphic Annotation Module". Use this function along with LDicomDS::GetLayerImageRefCount in order to enumerate all the referenced images under a certain "Graphic Annotation Sequence" item.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomDS_GetLayerImageRefSOPInstanceExample(LDicomDS& PresStateDS)  
 
{ 
   L_INT          nRet; 
   L_UINT         uImageCount;  
   L_TCHAR        szText[250] = TEXT(""); 
   pDICOMELEMENT  pAnnSQItem = PresStateDS. FindFirstGraphicAnnSQItem (); 
 
   nRet = PresStateDS.GetLayerImageRefCount(pAnnSQItem, &uImageCount);  
 
   if (nRet == DICOM_SUCCESS) 
 
   { 
 
      L_TCHAR*  pszInstanceUID = PresStateDS.GetLayerImageRefSOPInstance(pAnnSQItem, uImageCount - 1);  
 
      if (pszInstanceUID)  
 
      { 
 
       wsprintf(szText, TEXT("Image Referenced SOP Instance UID is: %s "), pszInstanceUID);  
 
         MessageBox( NULL, szText, TEXT("Note"), MB_OK); 
 
      } 
 
   } 
 
   return nRet; 
} 
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.