DICOMVR

typedef struct _DICOMVR 
{ 
   GENERICLINK; /* reserved */ 
   L_UINT16 nCode; /* code */ 
   L_TCHAR *pszName; /* name of the representation */ 
   L_UINT32 nLength; /* length */ 
   L_UINT16 nRestrict; /* restriction on the length */ 
   L_UINT16 nUnitSize; /* size of the smallest item */ 
} DICOMVR, * pDICOMVR; 

The DICOMVR structure contains information about supported value representations.

Member Description
GENERICLINK Reserved.
nCode 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.
pszName Character string that contains the name of the Value Representation. To see the default values for the Value Representation Names, refer to the Default Value Representation Table.
nLength The length of the value to be stored in the data element.
nRestrict Restrictions on the length. Possible values are given below. Values may be combined using the OR ( | ) operator.
  Value Meaning
  VR_FIXED [0x00] DICOMVR.nLength is a fixed number of bytes.
  VR_MAXIMUM [0x01] DICOMVR.nLength is the maximum number of bytes allowed.
  VR_MAXIMUM_GROUP [0x02] DICOMVR.nLength is the maximum number of bytes allowed per component group
  VR_ANY [0x03] Any length is valid.
  VR_NOT_APPLICABLE [0x04] DICOMVR.nLength is not applicable
  VR_BINARY [0x0100] Binary value.
  VR_STRING [0x0200] String value (The character '\' is used as the delimiter between values for multiple data elements).
  VR_TEXT [0x0400] Text value. (Data elements with this VR cannot be multi-valued).
nUnitSize The size of the smallest item that can be stored in the data element.

Comments

Internally LEADTOOLS maintains a table or list of available value representations. These value representations can include default value representations available in DICOM, as well as user defined value representations. You can access any of this information, add to the table, or delete items from the table using the L_DicomXXXVR functions. To see the default values, refer to the Value Representation Table.

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS DICOM C API Help