#include "Ltdic.h"
L_LTDIC_API L_VOID L_DicomGetPreamble(hDS, pPreamble, nLength)
Gets the contents of the files preamble.
A DICOM handle.
Character string to be updated with the contents of the preamble.
Length of pPreamble, in bytes. The maximum length is DS_PREAMBLE_LENGTH, which is defined as 128.
None.
To set the Preamble use L_DicomSetPreamble.
If the value specified in nLength is >= DS_PREAMBLE_LENGTH, then pPreamble will be updated with the entire Preamble. If nLength is < DS_PREAMBLE_LENGTH, then pPreamble will be updated with a truncated version of the Preamble with length nLength.
Required DLLs and Libraries
Win32, x64, Linux.
This example gets the default preamble
L_INT DicomGetPreambleExample(L_VOID)
{
HDICOMDS hDS;
L_UCHAR szPreamble[DS_PREAMBLE_LENGTH];
hDS = L_DicomCreateDS(NULL);
L_DicomGetPreamble(hDS, szPreamble, sizeof(szPreamble));
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