Drawable.Save Methods
Saves the contents of the drawable to a file, possibly with georeferencing information.
Overload List
Name | Description | |
---|---|---|
Public method | Save(System.String filename) | Saves the contents of the drawable to a file. |
Public method | Save(System.String filename, AttributeSet options) | Saves the contents of the drawable to a file with the given options. |
Public method | Save(System.String filename, AttributeSet options, Rectangle bounds, Crs crs) | Saves the contents of the drawable to a file with the given parameters and georeferencing information. |
Save(System.String filename)
Saves the contents of the drawable to a file.Syntax
public void Save (
System.String filename
)
Parameters
The file to save the image to. The extension controls in which format the image is saved.
Remarks
This method saves the contents of the drawable to the specified file. The format is selected based on the extension of the filename. See Supported Image Formats for details about the supported image formats.
This method is not supported for ExternalDrawable or in a custom symbol or custom visualizer.
Save(System.String filename, AttributeSet options)
Saves the contents of the drawable to a file with the given options.Syntax
public void Save (
System.String filename,
AttributeSet options
)
Parameters
The file to save the image to. The extension controls in which format the image is saved.
Format-specific image options.
Remarks
This method saves the contents of the drawable to the specified file. The format is selected based on the extension of the filename. The options parameter may be used to specify additional format-specific options. 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.
Save(System.String filename, AttributeSet options, Rectangle bounds, Crs crs)
Saves the contents of the drawable to a file with the given parameters and georeferencing information.Syntax
public void Save (
System.String filename,
AttributeSet options,
Rectangle bounds,
Crs crs
)
Parameters
The file to save the image to. The extension controls in which format the image is saved.
Format-specific image options.
Remarks
This method saves the contents of the drawable to the specified file. The format is selected based on the extension of the filename. The options parameter may be used to specify additional format-specific options.
If bounds or crs is specified, georeferencing information will also be stored. For a TIFF file, the bounds and coordinate reference system information will be written to the image file itself, using GeoTIFF tags. For all other formats, the bounds will be saved in a separate world file, and the crs property is not used.
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