#include "Ltdic.h"
L_TCHAR * LDicomDS::GetPresStateImageRefSOPInstance(pRefSeriesSQItem, uImageIndex)
Returns the SOP Instance UID for a referenced image (SOP Instance) under the "Referenced Image Sequence" in the "Presentation State Module".
Pointer to an item element under the "Referenced Series Sequence" (0008,1115) in the "Presentation State Module".
Index of the image(SOP Instance).
Value | Meaning |
---|---|
!NULL | SUCCESS |
NULL | An error occurred. |
This function will return the "SOP Instance UID" for a referenced image (SOP Instance) under the "Referenced Image Sequence" (0008,1115) in one of the items under "Referenced Series Sequence" (0008,1115) in the "Presentation State Module". Use this function along with LDicomDS::GetPresStateImageRefCount in order to enumerate all the referenced images under the specified "Referenced Image Sequence".
Required DLLs and Libraries
Win32, x64
L_INT LDicomDS_GetPresStateImageRefSOPInstanceExample(LDicomDS& PresStateDS)
{
L_INT nRet;
L_UINT uImageCount;
L_TCHAR szText[250] = TEXT("");
pDICOMELEMENT pSeriesSQItem = PresStateDS.FindFirstPresStateRefSeriesItem();
nRet = PresStateDS.GetPresStateImageRefCount(pSeriesSQItem, &uImageCount);
if (nRet == DICOM_SUCCESS)
{
L_TCHAR* pszInstanceUID = PresStateDS.GetPresStateImageRefSOPInstance(pSeriesSQItem, 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 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