Drawable.GetImage Methods
Saves the contents of the drawable to a memory buffer, possibly with georeferencing information.
Overload List
Name | Description | |
---|---|---|
Public method | GetImage(System.String format) | Saves the contents of the drawable to a memory buffer. |
Public method | GetImage(System.String format, AttributeSet options) | Saves the contents of the drawable to a memory buffer, with the given options. |
Public method | GetImage(System.String format, AttributeSet options, Rectangle bounds, Crs crs) | Saves the contents of the drawable to a memory buffer, with the given options and georeferencing information. |
GetImage(System.String format)
Saves the contents of the drawable to a memory buffer.Syntax
public System.IO.Stream GetImage (
System.String format
)
Parameters
The image format to use.
Return Value
A memory buffer containing the image.
Remarks
Similar to Save, but the image is returned to the application in a memory buffer instead of being written to a disk file. The format parameter is used to select image format, it should contain the file extension associated with the image format, for instance "gif" or "jpg".
See Supported Image Formats for details about the supported image formats.
This method is not supported for ExternalDrawable or in the implementation of ICustomSymbol or ICustomVisualizer.
GetImage(System.String format, AttributeSet options)
Saves the contents of the drawable to a memory buffer, with the given options.Syntax
public System.IO.Stream GetImage (
System.String format,
AttributeSet options
)
Parameters
The image format to use.
Format-specific image options.
Return Value
A memory buffer containing the image.
Remarks
Similar to Save, but the image is returned to the application in a memory buffer instead of being written to a disk file. The format parameter is used to select image format, it should contain the file extension associated with the image format, for instance "gif" or "jpg".
See Supported Image Formats for details about the supported image formats and which options that may be specified for each format.
This method is not supported for ExternalDrawable or in the implementation of ICustomSymbol or ICustomVisualizer.
GetImage(System.String format, AttributeSet options, Rectangle bounds, Crs crs)
Saves the contents of the drawable to a memory buffer, with the given options and georeferencing information.Syntax
public System.IO.Stream GetImage (
System.String format,
AttributeSet options,
Rectangle bounds,
Crs crs
)
Parameters
The image format to use.
Format-specific image options.
Return Value
A memory buffer containing the image.
Remarks
Similar to Save, but the image is returned to the application in a memory buffer instead of being written to a disk file. The format parameter is used to select image format, it should contain the file extension associated with the image format, for instance "gif" or "jpg".
Georeferencing information is only included for the TIFF format; for other formats bounds and crs are ignored.
See Supported Image Formats for details about the supported image formats and which options that may be specified for each format.
This method is not supported for ExternalDrawable or in the implementation of ICustomSymbol or ICustomVisualizer.
Platforms
Windows, Linux, Android