LDicomTag::Insert

Summary

Inserts a new item in the Data Element Tag Table.

Syntax

#include "Ltdic.h"

static pDICOMTAG LDicomTag::Insert(nCode, nMask, pszName, nVR, nMinVM, nMaxVM, nDivideVM)

Parameters

L_UINT32 nCode

Code that indicates the tag. For a list of default values, refer to Data Element Tag Constants.

L_UINT32 nMask

Masking value. Masking allows you to insert multiple elements in the same entry in the table.

L_TCHAR * pszName

Character string that contains the name of the tag. For the default values for the Tag Names, refer to the Default Data Element Tag Table.

L_UINT16 nVR

Value representation code that indicates the type of value stored in the data element. For a list of default values supported by DICOM, refer to Value Representation Constants.

L_UINT32 nMinVM

Value that indicates the minimum number of values that may be stored in the Value Field of the Data Element.

L_UINT32 nMaxVM

Value that indicates the maximum number of values that may be stored in the Value Field of the Data Element.

L_UINT32 nDivideVM

Value used to divide the value multiplicity. When multiple values are stored in the value field of a data element, the number of values present must be evenly divisible by nDivideVM. For most items nDivideVM will be 1. However, if the values stored in the value field are RGB triplets, for example, you would have to store three values for each triplet. You could store 12 values, since 12 values would be 4 triplets, however, you could not store 13 values. In this case nDivideVM would be 3.

Returns

Value Meaning
!NULL A pointer to a DICOMVR structure containing the newly inserted item.
NULL Not enough memory to insert the item.

Comments

All items are inserted at the bottom of the table.

For the default values for the Data Element Tag Table, refer to the Default Data Element Tag Table.

For more information on the DICOM file format, refer to An Overview of Dicom or the DICOM Spec.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

This example inserts 2 new items in the Tag table.

L_INT LDicomTag_InsertExample() 
{ 
   LDicomTag::Insert(0x12345678, 0xFFFFFFFF, TEXT("New XXX Tag"), VR_US, 1, 1, 1); 
   LDicomTag::Insert(0x87654321, 0xFFFFFFFF, TEXT("New YYY Tag"), VR_LO, 1, 1, 1); 
 
   return DICOM_SUCCESS; 
} 

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.