LDicomDS::ChangeTransferSyntax

#include "Ltdic.h"

L_UINT16 LDicomDS::ChangeTransferSyntax(pszUID, nQFactor, uFlags);

L_UINT16 LDicomDS::ChangeTransferSyntax(pszOutfile, pszUID, nQFactor, uFlags, uSaveFlags);

Changes the transfer syntax of the data set.

Parameters

L_TCHAR * pszOutfile

Character string that contains the name of the output file.

L_TCHAR * pszUID

Character string that contains the UID of the new Transfer Syntax. Possible values are:

Value Meaning
UID_IMPLICIT_VR_LITTLE_ENDIAN "1.2.840.10008.1.2"
UID_EXPLICIT_VR_LITTLE_ENDIAN "1.2.840.10008.1.2.1"
UID_EXPLICIT_VR_BIG_ENDIAN "1.2.840.10008.1.2.2"
UID_JPEG_BASELINE_1 "1.2.840.10008.1.2.4.50"
UID_JPEG_EXTENDED_2_4 "1.2.840.10008.1.2.4.51"
UID_JPEG_LOSSLESS_NONHIER_14 "1.2.840.10008.1.2.4.57"
UID_JPEG_LOSSLESS_NONHIER_14B "1.2.840.10008.1.2.4.70"
TRANSFER_SYNTAX_JPEG_LS_LOSSLESS "1.2.840.10008.1.2.4.80"
TRANSFER_SYNTAX_JPEG_LS_LOSSY "1.2.840.10008.1.2.4.81"
UID_JPEG2000_LOSSLESS_ONLY "1.2.840.10008.1.2.4.90"
UID_JPEG2000 "1.2.840.10008.1.2.4.91"
TRANSFER_SYNTAX_JPEG_2000_PART_2_MULTI_COMPONENT_IMAGE_COMPRESSION_LOSSLESS_ONLY "1.2.840.10008.1.2.4.92"
TRANSFER_SYNTAX_JPEG_2000_PART_2_MULTI_COMPONENT_IMAGE_COMPRESSION "1.2.840.10008.1.2.4.93"
UID_RLE_LOSSLESS "1.2.840.10008.1.2.5"

L_INT32 nQFactor

The quality factor (Q factor) is a number that determines the degree of loss in the compression process. You can set a value from 2 to 255, where 2 is the highest quality and 255 is the most compression. This parameter only applies when the new transfer syntax will involve compressing pixel data using a lossy compression.

L_UINT32 uFlags

Flag that indicates how the compression will be performed. Possible values are:

Value Meaning
DICOM_CHANGETRAN_MINIMIZE_JPEG_SIZE [0x00000001] If set, and the new transfer syntax uses JPEG compression, the JPEG compression engine will use optimized Huffman tables, which results in better compression, but slower speed.
DICOM_CHANGETRAN_RESCALE_MODALITY_LUT_WHEN_LOSSY_COMPRESSED [0x00000002] If set, and the new transfer syntax uses JPEG lossy compression, any modality LUT present will be rescaled to account for changes in minimum and maximum grayscale values due to lossy compression.
DICOM_CHANGETRAN_YBR_FULL [0x00000100] This flag is valid only for color images, and if pszUID is one of the following: UID_IMPLICIT_VR_LITTLE_ENDIAN, UID_EXPLICIT_VR_LITTLE_ENDIAN, UID_EXPLICIT_VR_BIG_ENDIAN, UID_RLE_LOSSLESS. It is ignored for all other transfer syntax values. If set, this converts the RGB image data to YCbCr, which is one luminance (Y) and two chrominance planes (CB and CR).

L_UINT16 uSaveFlags

Flag that indicates how the compression will be performed. Possible values are:

Value Meaning
DS_METAHEADER_PRESENT [0x0001] The header is present. This can be used with compressed or uncompressed images.
DS_METAHEADER_ABSENT [0x0002] The header is absent. This can be used only with uncompressed images.
DS_GROUP_LENGTHS [0x0040] Include an entry in the file for each group with the group number and the number of elements that group has.
DS_LENGTH_EXPLICIT [0x0080] The length of a sequence (in bytes) is encoded as a 32-bit integer and no Sequence delimitation item is included at the end of the sequence.
DS_EXCLUDE_METAHEADER_GROUP [0x0100] Elements with the tag number 0x0002xxxx will not be saved in the file.

Returns

Value Meaning
0 SUCCESS
>0 An error occurred. Refer to Return Codes.

Comments

This function will convert the data set's transfer syntax to the transfer syntax specified in pszUID, maintaining all elements and values in the data set.

After this function is called all previous references to data elements in the data set will no longer be valid.

This function is especially useful when sending a C_STORE_REQ message using the LDicomNet::SendCStoreRequest function. The user can match the data set transfer syntax with the transfer syntax of the SCP.

If this function returns the error DICOM_ERROR_WRITE, one of the causes could be that your system is missing the LEADTOOLS file filter LFCMPU.DLL. Specifically, this error will be returned if either the original transfer syntax or the new transfer syntax is one of the following:

The overload that takes the pszOutFile parameter saves a dataset with the new transfer syntax at the location pszOutFile with save options specified by uSaveFlags. This overload should be used when trying to produce a file with the new transfer syntax (instead of the first overload followed by a call to LDicomDS::SaveDS) because it will be significantly faster and use fewer resources (memory and disk), especially for large files.

Make sure that the LFCMPU.DLL is in the same folder as the other LEAD DLLS. For more information see Files To Be Included With Your Application.

NOTE: This function cannot be used to encode DICOM transfer syntaxes (e.g. video compression support) that are not part of the main medical SDK and it is supported only via the LEADTOOLS Medical Module.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomDS_ChangeTransferSyntaxExample() 
 
{ 
   L_INT       nRet; 
   LDicomDS*   pDS; 
 
   pDS = new LDicomDS(NULL); 
 
   // ******************************************************** 
   // Example 1 - change transfer syntax and save in two steps 
   // ******************************************************** 
   nRet = pDS->LoadDS(MAKE_IMAGE_PATH(TEXT("image1.dcm")), 0); 
   if(nRet != DICOM_SUCCESS) 
      return nRet; 
 
   // Change transfer syntax to explicit VR Big Endian 
   nRet = pDS->ChangeTransferSyntax(UID_EXPLICIT_VR_BIG_ENDIAN,0,0); 
   if(nRet != DICOM_SUCCESS) 
      return nRet; 
 
   // Save the new dataset 
   nRet = pDS->SaveDS(MAKE_IMAGE_PATH(TEXT("temp.dcm")), 0); 
   if(nRet != DICOM_SUCCESS) 
      return nRet; 
 
   // ******************************************************** 
   // Example 2 -- change transfer syntax and save in one step 
   // ******************************************************** 
    nRet = pDS->LoadDS(MAKE_IMAGE_PATH(TEXT("image1.dcm")), 0); 
   if(nRet != DICOM_SUCCESS) 
      return nRet; 
 
   // Change transfer syntax to explicit VR Big Endian 
   nRet = pDS->ChangeTransferSyntax(MAKE_IMAGE_PATH(TEXT("temp2.dcm")), UID_EXPLICIT_VR_BIG_ENDIAN,0,0,0); 
   if(nRet != DICOM_SUCCESS) 
      return nRet; 
 
   delete pDS; 
 
   return DICOM_SUCCESS; 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

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