Raster.Save Methods
Saves the raster to a file, possibly with georeferencing information.
Overload List
Name | Description | |
---|---|---|
Public method | Save(System.String filename) | Saves the raster to a file. |
Public method | Save(System.String filename, AttributeVariable< System.Drawing.Color > colorTable, AttributeSet options) | Saves the raster to a file with the given options. |
Public method | Save(System.String filename, AttributeVariable< System.Drawing.Color > colorTable, AttributeSet options, Rectangle bounds, Crs crs) | Saves the raster to a file with the given options and georeferencing information. |
Save(System.String filename)
Saves the raster 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 raster 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.
Save(System.String filename, AttributeVariable< System.Drawing.Color > colorTable, AttributeSet options)
Saves the raster to a file with the given options.Syntax
public void Save (
System.String filename,
AttributeVariable< System.Drawing.Color > colorTable,
AttributeSet options
)
Parameters
The file to save the image to. The extension controls in which format the image is saved.
Specified the color table, if the raster doesn't contain color information.
Format-specific image options.
Remarks
This method saves the raster 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.
If the raster does not contain color information, this can be supplied with the colorTable parameter.
Save(System.String filename, AttributeVariable< System.Drawing.Color > colorTable, AttributeSet options, Rectangle bounds, Crs crs)
Saves the raster to a file with the given options and georeferencing information.Syntax
public void Save (
System.String filename,
AttributeVariable< System.Drawing.Color > colorTable,
AttributeSet options,
Rectangle bounds,
Crs crs
)
Parameters
The file to save the image to. The extension controls in which format the image is saved.
Specified the color table, if the raster doesn't contain color information.
Format-specific image options.
The geographic bounds of the image.
The coordinate reference system of the image.
Remarks
This method saves the raster 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.
If the raster does not contain color information, this can be supplied with the colorTable parameter.
See Supported Image Formats for details about the supported image formats and which options that may be specified for each format.
Platforms
Windows, Linux, Android