#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomSetConvertValue(hDS, pElement, strText, nCount)
Converts a string and sets the value of an element. Items in the string are separated by a '\'.
A DICOM handle.
Pointer to a DICOMELEMENT structure within the Data Set.
Character string that contains the string to be converted to 1 or more values.
Number of values in strText.
Value | Meaning |
---|---|
TRUE | The function completed successfully. |
FALSE | The function did not complete successfully. |
Required DLLs and Libraries
Win32, x64, Linux.
This example sets the value of an element
L_INT DicomSetConvertValueExample(L_VOID)
{
HDICOMDS hDS;
pDICOMELEMENT pElement;
hDS = L_DicomCreateDS(NULL);
L_DicomInitDS(hDS, CLASS_NM_IMAGE_STORAGE, 0);
pElement = L_DicomFindFirstElement(hDS, NULL, TAG_STUDY_DATE, FALSE);
if (!L_DicomSetConvertValue(hDS, pElement, TEXT("01/02/1999"), 1))
{
L_DicomFreeDS(hDS);
return FAILURE - 1;
}
pElement = L_DicomFindFirstElement(hDS, NULL, TAG_IMAGE_TYPE, FALSE);
if (!L_DicomSetConvertValue(hDS, pElement, TEXT("DERIVED\\PRIMARY"), 2))
{
L_DicomFreeDS(hDS);
return FAILURE - 1;
}
pElement = L_DicomFindFirstElement(hDS, NULL, TAG_IMAGE_POSITION_PATIENT, FALSE);
if (!L_DicomSetConvertValue(hDS, pElement, TEXT("0.123\\0.456\\1.789"), 3))
{
L_DicomFreeDS(hDS);
return FAILURE - 1;
}
L_DicomFreeDS(hDS);
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