Class DICOMImage
Inheritance
System.Object
DICOMImage
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.DICOM
Assembly: Syncfusion.DICOM.Base.dll
Syntax
public class DICOMImage : IDisposable
Constructors
DICOMImage()
Initializes a new instance of the
Declaration
public DICOMImage()
DICOMImage(Image)
Initializes a new instance of the DICOMImage class.
Declaration
public DICOMImage(Image image)
Parameters
Type | Name | Description |
---|---|---|
System.Drawing.Image | image | The image. |
DICOMImage(Stream)
Initializes a new instance of the
Declaration
public DICOMImage(Stream stream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | The stream. |
DICOMImage(String)
Initializes a new instance of the
Declaration
public DICOMImage(string fileName)
Parameters
Type | Name | Description |
---|---|---|
System.String | fileName | Name of the file. |
Properties
FileName
Gets or sets the name of the file.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the file. |
Image
Declaration
public Image Image { get; set; }
Property Value
Type |
---|
System.Drawing.Image |
InputStream
Gets or sets the input stream.
Declaration
public Stream InputStream { get; set; }
Property Value
Type | Description |
---|---|
System.IO.Stream | The input stream. |
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
Save(Stream)
Converts the specified save stream.
Declaration
public void Save(Stream saveStream)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | saveStream | The save stream. |
Save(String)
Declaration
public void Save(string savePath)
Parameters
Type | Name | Description |
---|---|---|
System.String | savePath |
Implements
System.IDisposable