L_DicomCreateDS

Summary

Allocates the memory for the data set and sets the site of the temporary files.

Syntax

#include "Ltdic.h"

L_LTDIC_API HDICOMDS L_DicomCreateDS(pszPath)

Parameters

L_TCHAR * pszPath

Character string containing the location of the temporary files. DICOM uses temporary files during the course of creating a file. If this parameter is NULL, the DICOM temporary files are kept in the directory Windows places its own temporary files. If this parameter is not NULL, the temporary files are placed in the specified directory.

Returns

A DICOM handle.

Comments

The allocated memory is freed by calling L_DicomFreeDS.

To initialize the newly created Data Set to contain elements of a specific class, call L_DicomInitDS.

This function must be called before calling L_DicomLoadDS, L_DicomLoadDSMemory, or L_DicomInitDS.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

This example creates and frees the Data Set

L_INT DicomCreateDSExample(L_VOID) 
{ 
   HDICOMDS hDS; 
   hDS = L_DicomCreateDS(MAKE_IMAGE_PATH(TEXT(""))); 
   L_DicomFreeDS(hDS); 
 
   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 API Help

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