#include "Ltdic.h"
L_LTDIC_API L_UINT16 L_DicomLoadXmlTag(pszFile, uFlags)
Loads the Element Tags contained in the pszFile into the internal DICOM Element Tag Table.
Character string that contains the name of the XML file containing the Element Tags to load.
Reserved for future use. Pass 0.
Value | Meaning |
---|---|
DICOM_SUCCESS | The function was successful. |
>0 | An error occurred. Refer to Return Codes. |
Starting in version 17.5 of the toolkit, you can easily and quickly customize the DICOM Element Tag table by editing the dicTableElement.xml file that is found in the LEADTOOLS Sample Images folder. The dicTableElement.xml file is a human-readable XML file that lists all of the DICOM Element Tags currently defined in the DICOM Specification. You can edit this with any text editor (i.e. notepad) to add or remove DICOM Element Tags. Then call L_DicomLoadXmlTag() and pass the full path of the dicTableElement.xml file. Note that calling L_DicomLoadXmlTag() will first remove all Element Tags that are already present in the table.
To see the default values for the DICOM Element Tag Table, refer to the Default Data Element Tag Table.
For more information, see the topic Working with DICOM Tables.
Required DLLs and Libraries
Win32, x64
This example loads the DICOM element tag table from the dicTableElement.xml file that is shipped with the toolkit.
L_INT DicomLoadXmlTagExample(L_VOID)
{
L_DicomLoadXmlTag(TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\dicTableElement.xml"), 0);
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