Write Method (DicomDataSet)
In This Topic
Writes the dataset to an external DICOM file, a system IO stream or a byte
array etc.
Overload List
Overload | Description |
Write(String,String,Object) |
Writes dataset to an external DICOM file with specified transfer syntax and
quality factor
|
Write(String,String,Object,DicomDataSet) |
Writes dataset to an external DICOM file with specified transfer syntax, quality
factor and meta header
|
Write(String,String,Object,DicomDataSet,WriteBehaviours) |
Writes dataset to an external DICOM file with specified transfer syntax, quality
factor, meta header and behaviour overrides
|
Write(Stream,String,Object,DicomDataSet,WriteBehaviours) |
Writes dataset to a stream with specified transfer syntax, quality
factor, meta header and behaviour overrides
|
Write(String,Boolean) | Writes dataset to an external DICOM file |
Write(String,String,DicomDataSet) |
Writes dataset to an external DICOM file with specified transfer syntax and meta
header
|
Write(String,String) | Writes dataset to an external DICOM file with specified transfer syntax |
Write(String) | Writes dataset to an external DICOM file |
Write(String,DicomDataSet) | Writes dataset to an external DICOM file with specified meta header |
Write(Stream,String,Object) | Writes dataset to a system IO stream object with specified transfer syntax |
Write(Stream,Boolean) | Writes dataset to a system IO stream object |
Write(Stream,String) | Writes dataset to a system IO stream object with specified transfer syntax |
Write(Stream,String,DicomDataSet) |
Writes dataset to a system IO stream object with specified transfer syntax and
meta header
|
Write(Stream) | Writes dataset to a system IO stream object |
Write(Byte[],String,Object) |
Writes dataset to a byte array with specified transfer syntax and quality
factor
|
Write(Byte[],Boolean) | Writes dataset to a byte array |
Write(Byte[],String) | Writes dataset to a byte array with specified transfer syntax |
Write(IEnumerable<Byte[]>,String,Int32) | Writes dataset to an an enumerable byte arrays with specified transfer syntax and byte array length. This is useful if you want to have byte arrays for large data.
FileStream or something similar would be preferable than holding everything in memory. |
Write(Byte[]) | Writes the dataset to a byte array |
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also