#include "Ltdic.h"
pDICOMELEMENT LDicomDS::GetPresStateImageRefBySOPInstance(pszSOPInstanceUID)
Returns a pointer to the item element, which represents a referenced image (SOP Instance) under the "Referenced Image Sequence" in the "Presentation State Module".
SOP Instance UID of the image whose item element will be retrieved.
Value | Meaning |
---|---|
!NULL | SUCCESS |
NULL | An error occurred. |
A NULL pointer will be returned if the item could not be found.
Required DLLs and Libraries
Win32, x64
L_INT LDicomDS_GetPresStateImageRefBySOPInstanceExample(LDicomDS& PresStateDS, L_TCHAR* pszSOPInstanceUID)
{
L_TCHAR szText[256] = TEXT("");
pDICOMELEMENT pElement = PresStateDS. GetPresStateImageRefBySOPInstance(pszSOPInstanceUID);
if (pElement)
{
pElement = PresStateDS.GetChildElement(pElement, TRUE);
if (pElement)
{
pElement = PresStateDS.FindFirstElement(pElement, TAG_REFERENCED_SOP_CLASS_UID, TRUE);
L_TCHAR* pszClassUID = PresStateDS.GetStringValue(pElement, 0, 1);
if (pszClassUID)
{
wsprintf(szText, TEXT("Image Referenced SOP class UID is: %s "), pszClassUID);
MessageBox( NULL, szText, 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