'DeclarationPublic Overloads Sub Write( _ ByVal Stream As System.IO.Stream _ )
public void Write( System.IO.Stream Stream )
Parameters
- Stream
The Stream from which to read.
The Stream from which to read.
'DeclarationPublic Overloads Sub Write( _ ByVal Stream As System.IO.Stream _ )
public void Write( System.IO.Stream Stream )
The Stream from which to read.
DicomImage image = new DicomImage("your_dicom_image.dcm"); using (FileStream fs = new FileStream("output_image.dcm", FileMode.Create, FileAccess.Write)) { image.Write(fs); }