The IDLffDicomEx object provides methods for reading and writing pixel data to a DICOM file, and for specifying the data compression. Other methods let you add, modify, or remove public and private DICOM attribute tags, public and private sequences, and sets of repeating tags within sequences. See DICOM Sequence Items below for details. Other methods allows you to output all tags in a DICOM file to an ASCII file or to an IDL structure. You can also copy subsets of tags from one file to another.

A DICOM file contains DICOM attributes or data elements, which are composed of:

  • A tag, in the format of group number, element number (XXXX,XXXX) that identifies the attribute
  • A Value Representation (VR) that describes the data type and format of the attribute’s value
  • A value length that defines the length of the attribute’s value
  • A value field that contains the attribute’s data

The basic attribute structure is shown in the following figure.

A DICOM attribute, identified by a (group number, element number) tag may be public or private. Attributes with an even group number are defined by the DICOM standard and are referred to as public tags. Attributes with an odd group number can be defined by users of the file format, but must conform to the same structure as standard elements. These are referred to as private tags.

DICOM Sequence Items

A DICOM attribute may be a sequence, which is a data element with a value representation of "SQ." A sequence is an attribute that acts as a container for one or more items. A sequence can contain individual items, additional (nested) sequences of items, or sets of repeating items. These sets of repeating tags are identified as groups in this document.

File Compression and Transfer Syntax Support


The IDLffDicomEx object supports reading and writing to compressed files on Windows platforms. Using IDLffDicomEx properties and methods, you can return and modify the compression of a file. Use the TRANSFER_SYNTAX property to return the Transfer Syntax UID (0002,0010) associated with the DICOM file. Use the IDLffDicomEx::ChangeTransferSyntax method to change the transfer syntax of an object. The IDLffDicomEx object supports the following transfer syntaxes.

Compression

Type

Transfer Syntax UID

Description

Implicit VR Little Endian

1.2.840.10008.1.2

Default transfer syntax for DICOM

Explicit VR Little Endian

1.2.840.10008.1.2.1

Little Endian data encoding

Explicit VR Big Endian

1.2.840.10008.1.2.2

Big Endian data encoding

JPEG Baseline

1.2.840.10008.1.2.4.50

Default Transfer Syntax for Lossy JPEG 8 Bit Image Compression

JPEG Extended (Process 2 & 4)

1.2.840.10008.1.2.4.51

Default Transfer Syntax for Lossy JPEG 12 Bit Image Compression (Process 4 only)

JPEG Lossless, Non-Hierarchical

1.2.840.10008.1.2.4.70

Lossless JPEG Image Compression. First-Order Prediction (Process 14 [Selection Value 1])

JPEG 2000, Lossless Only

1.2.840.10008.1.2.4.90

Lossless, reversible wavelet and color component transformation, and no quantization.

JPEG 2000, Lossy

1.2.840.10008.1.2.4.91

Lossy, irreversible wavelet transformation and color component transformation, and optional quantization.