#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomSetBinaryStream(hDS, pElement, hFile, nFileOffset, nLength)
Sets the binary value of an element.
A DICOM handle.
Pointer to a DICOMELEMENT structure within the Data Set.
File handle with read mode that contains the binary data to set from.
Offset (from file begging) to where to read from.
Length, in bytes, of the data to read from the file, typically the file size.
Value | Meaning |
---|---|
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 nLength.
Required DLLs and Libraries
Win32, x64, Linux.
This example sets the value for an element.
L_INT DicomSetBinaryStreamExample(L_HFILE hFile, L_UINT32 nLength)
{
HDICOMDS hDS;
pDICOMELEMENT pElement;
L_UCHAR Buffer[2];
hDS = L_DicomCreateDS(NULL);
Buffer[0] = 0;
Buffer[1] = 1;
L_DicomInitDS(hDS, CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, 0);
pElement = L_DicomFindFirstElement(hDS, NULL, TAG_PATIENT_NAME, FALSE);
if (pElement != NULL)
{
L_DicomSetBinaryStream(hDS, pElement, hFile, 0, nLength);
}
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