←Select platform

SetBinaryValue(DicomElement,string) Method

Summary
Sets the binary value of an element.
Syntax
C#
VB
C++
public bool SetBinaryValue( 
   DicomElement element, 
   string fileName 
) 
Public Overloads Function SetBinaryValue( _ 
   ByVal element As DicomElement, _ 
   ByVal fileName As String _ 
) As Boolean 
public: 
bool SetBinaryValue(  
   DicomElement^ element, 
   String^ fileName 
)  

Parameters

element
An item in the Data Set.

fileName
Path name of the file that contains the binary value to set.

Return Value

True if the binary value of the Data Element was set successfully. false, if it could not set the binary value of the Data Element.

Remarks

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

Example

This example will replace the video stored in an existing DICOM Dataset with another one. The replacement video should have the same format, frame rate and compression as the originally stored one.

Note: This example assumes the replacement video has all the correct characteristics of a Dicom video and assumes that the tags found in the original dataset matches the video specs as well, if you need higher level video processing you need to use the medical SDK, which is supported only via the LEADTOOLS Medical Module.

C#
VB
using Leadtools; 
using Leadtools.Dicom; 
 
 
public void Test_DicomDataSet_ReplaceVideoExample() 
{ 
   string src = @"DaDa_DVD_MPEG2.dcm"; 
   string videoFile = @"DaDa_DVD_MPEG2.mpg"; 
   string target = @"target.dcm"; 
 
   DicomEngine.Startup(); 
   DicomDataSet ds = new DicomDataSet(); 
   ds.Load(src, DicomDataSetLoadFlags.None); 
 
   var pixelDataElement = ds.FindFirstElement(null, DicomTag.PixelData, true); 
   var itemElement = ds.GetChildElement(pixelDataElement, true); 
   itemElement = ds.GetNextElement(itemElement, true, true); 
 
   ds.SetBinaryValue(itemElement, videoFile); 
 
   ds.Save(target, 0); 
   DicomEngine.Shutdown(); 
   Console.WriteLine("Test_DicomDataSet_ReplaceVideoExample Finished"); 
} 
Imports Leadtools 
Imports Leadtools.Dicom 
 
Public Sub Test_DicomDataSet_ReplaceVideoExample() 
 
   Dim src As String = "DaDa_DVD_MPEG2.dcm" 
   Dim videoFile As String = "DaDa_DVD_MPEG2.mpg" 
   Dim target As String = "target.dcm" 
 
   DicomEngine.Startup() 
   Dim ds As DicomDataSet = New DicomDataSet() 
   ds.Load(src, DicomDataSetLoadFlags.None) 
 
   Dim pixelDataElement As DicomElement = ds.FindFirstElement(Nothing, DicomTag.PixelData, True) 
   Dim itemElement As DicomElement = ds.GetChildElement(pixelDataElement, True) 
   itemElement = ds.GetNextElement(itemElement, True, True) 
 
   ds.SetBinaryValue(itemElement, videoFile) 
 
   ds.Save(target, 0) 
   DicomEngine.Shutdown() 
   Console.WriteLine("Test_DicomDataSet_ReplaceVideoExample Finished") 
End Sub 
Requirements

Target Platforms

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

Leadtools.Dicom Assembly

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