LDicomDS::SetBinaryFile

#include "Ltdic.h"

L_BOOL LDicomDS::SetBinaryFile(pElement, pszFileName)

Sets the binary value of an element.

Parameters

pDICOMELEMENT pElement

Pointer to a DICOMELEMENT structure within the Data Set.

L_TCHAR * pszFileName

String with file name to set binary data from.

Returns

Value Meaning
TRUE The binary value of the Data Element was set successfully.
FALSE Could not set the binary value of the Data Element.

Comments

This function overwrites the value of the Data Element. The Value Length of the Data Element is then equal to the file length.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

This example sets the value for an element.

L_INT LDicomDS_SetBinaryFileExample() 
{ 
	LDicomDS      *pDS; 
	pDICOMELEMENT  pElement; 
 
 
	pDS = new LDicomDS(NULL); 
 
	pDS->InitDS(CLASS_CR_IMAGE_STORAGE, 0); 
 
	pElement = pDS->FindFirstElement(NULL, TAG_CLINICAL_TRIAL_PROTOCOL_ID, FALSE); 
	if (pElement != NULL) 
	{ 
		pDS->SetBinaryFile(pElement, TEXT("data.bin")); 
	} 
 
	delete pDS; 
 
	return DICOM_SUCCESS; 
} 

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

LEADTOOLS DICOM C++ Class Library Help