[]
Saves the shape to the specified image file.
void ToImage(string fileName)
| Type | Name | Description |
|---|---|---|
| string | fileName | The output image file. |
Saves the shape to the specified image file using options.
void ToImage(string fileName, ImageSaveOptions options)
| Type | Name | Description |
|---|---|---|
| string | fileName | The output image file. |
| ImageSaveOptions | options | The options for output image. |
Saves the shape to the specified image stream.
void ToImage(Stream stream, ImageType imageType)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The output image stream. |
| ImageType | imageType | Specifies the type of image to create. |
Saves the shape to the specified image stream using options.
void ToImage(Stream stream, ImageType imageType, ImageSaveOptions options)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The output image stream. |
| ImageType | imageType | Specifies the type of image to create. |
| ImageSaveOptions | options | The options for output image. |