[]
Initializes a new instance of the C1Image class.
public C1Image(MemoryStream data)
Public Sub New(data As MemoryStream)
| Type | Name | Description |
|---|---|---|
| MemoryStream | data | A MemoryStream to assign. |
Initializes a new instance of the C1Image class.
public C1Image(MemoryStream data, C1ImageFormat format)
Public Sub New(data As MemoryStream, format As C1ImageFormat)
| Type | Name | Description |
|---|---|---|
| MemoryStream | data | A MemoryStream to assign. |
| C1ImageFormat | format | A C1ImageFormat to assign. |
Initializes a new instance of the C1Image class.
public C1Image(byte[] data, C1ImageFormat format)
Public Sub New(data As Byte(), format As C1ImageFormat)
| Type | Name | Description |
|---|---|---|
| byte[] | data | The image data array of byte. |
| C1ImageFormat | format | The C1ImageFormat. |
Initializes a new instance of the C1Image class.
public C1Image(Stream stream, C1ImageFormat format)
Public Sub New(stream As Stream, format As C1ImageFormat)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The image data System.IO.Stream. |
| C1ImageFormat | format | The C1ImageFormat. |
Initializes a new instance of the C1Image class.
public C1Image(Image image)
Public Sub New(image As Image)
| Type | Name | Description |
|---|---|---|
| Image | image | The System.Drawing.Image. |
Initializes a new instance of the C1Image class.
public C1Image(Metafile metafile)
Public Sub New(metafile As Metafile)
| Type | Name | Description |
|---|---|---|
| Metafile | metafile | The System.Drawing.Imaging.Metafile. |