#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomSetBinaryFile(hDS, pElement, pszFileName)
HDICOMDS hDS; |
a DICOM handle |
pDICOMELEMENT pElement; |
pointer to a DICOMELEMENT structure |
L_TCHAR * pszFileName; |
pointer to a string with file name |
Sets the binary value of an element.
Parameter | Description |
hDS | A DICOM handle. |
pElement | Pointer to a DICOMELEMENT structure within the Data Set. |
pszFileName | String with file name to read binary data from. |
TRUE | The binary value of the Data Element was set successfully. |
FALSE | Could not set the binary value of the Data Element. |
This function overwrites the value of the Data Element. The Value Length of the Data Element is then equal to file's length.
Required DLLs and Libraries
LTDIC For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64, Linux.
This example sets the value for an element.
L_INT DicomSetBinaryFileExample(L_VOID)
{
HDICOMDS hDS;
pDICOMELEMENT pElement;
hDS = L_DicomCreateDS(NULL);
L_DicomInitDS(hDS, CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, 0);
pElement = L_DicomFindFirstElement(hDS, NULL, TAG_PATIENT_NAME, FALSE);
if (pElement != NULL)
L_DicomSetBinaryFile(hDS, pElement, TEXT("data.bin"));
L_DicomFreeDS(hDS);
return DICOM_SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET