Available in LEADTOOLS Medical Imaging toolkits. |
#include "Ltdic.h"
static L_UINT16 LDicomTag::LoadXml(pszFile, uFlags)
L_TCHAR *pszFile; |
/* character string that contains the name of the XML file containing the Element Tags to load.*/ |
L_UINT uFlags; |
/* reserved for future use. Pass 0. */ |
Loads the Element Tags contained in the pszFile into the internal DICOM Element Tag Table.
Parameter |
Description |
pszFile |
Character string that contains the name of the XML file containing the Element Tags to load. |
uFlags |
Reserved for future use. Pass 0. |
Returns
0 |
DICOM_SUCCESS |
>0 |
An error occurred. Refer to Return Codes. |
Comments
Quickly and easily 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 Elements. Then call LDicomTag::LoadXml() and pass the full path of the dicTableElement.xml file. Note that calling LoadXml() will first remove all DICOM elements 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, refer to the Working with DICOM Tables topic.
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
See Also
Functions: |
LDicomTag::Insert, LDicomTag::Delete, LDicomTag::Reset, LDicomTag::Default, Class Member |
Topics: |
Data Element Tags: Inserting and Deleting Data Element Tags |
Example
This example loads the DICOM element tag table from the dicTableElement.xml file that is shipped with the toolkit.
L_INT LDicomTag_LoadXmlExample() { LDicomTag::LoadXml(TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\dicTableElement.xml"), 0); return DICOM_SUCCESS; }