LDicomUID::LoadXml (original) (raw)
Summary
Loads the UIDs contained in the pszFile into the internal DICOM UID Table.
Syntax
#include "Ltdic.h"
static L_UINT16 LDicomUID::LoadXml(pszFile, uFlags)
Parameters
L_TCHAR *pszFile
Character string that contains the name of the XML file containing the UIDs to load.
L_UINT uFlags
Reserved for future use. Pass 0.
Returns
| Value | Meaning |
|---|---|
| 0 | DICOM_SUCCESS |
| >0 | An error occurred. Refer to Return Codes. |
Comments
Quickly and easily customize the DICOM Unique Identifier table (UID Table) by editing the dicTableUid.xml file that is found in the LEADTOOLS Sample Images folder. The dicTableUid.xml file is a human-readable XML file that lists all of the DICOM UIDs currently defined in the DICOM Specification. You can edit this with any text editor (i.e. notepad) to add or remove DICOM UIDs. Then call LDicomUID::LoadXml() and pass the full path of the dicTableUid.xml file. Note that calling LoadXml() will first remove all UIDs that are already present in the table.
For the default values for the UID Table, refer to the Default UID 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
Platforms
Win32, x64
See Also
Functions
Topics
- Data Element Tags: Inserting and Deleting Data Element Tags
- Working with Unique Identifiers (UIDs)
- Working with DICOM Tables
Example
This example loads the UID table from the dicTableUid.xml file that is shipped with the toolkit.
L_INT LDicomUID_LoadXmlExample()
{
LDicomUID::LoadXml(TEXT("C:\\LEADTOOLS22\\Resources\\Images\\DICOM\\dicTableUid.xml"), 0);
return DICOM_SUCCESS;
}