L_DicomSetConvertValue

#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 '\'.

Parameters

HDICOMDS hDS

A DICOM handle.

pDICOMELEMENT pElement

Pointer to a DICOMELEMENT structure within the Data Set.

L_TCHAR *strText

Character string that contains the string to be converted to 1 or more values.

L_UINT32 nCount

Number of values in strText.

Returns

Value Meaning
TRUE The function completed successfully.
FALSE The function did not complete successfully.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

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 Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C API Help