-
-
Notifications
You must be signed in to change notification settings - Fork 4
Image.Gdal
Gigas002 edited this page Oct 20, 2019
·
4 revisions
Gdal's method to work with input files.
Description: Runs GdalWarp with passed parameters.
Syntax:
public static async ValueTask WarpAsync(FileInfo inputFileInfo, FileInfo outputFileInfo, string[] options, OSGeo.GDAL.Gdal.GDALProgressFuncDelegate callback = null)
Parameters:
Type | Name | Description |
---|---|---|
System.IO.FileInfo | inputFileInfo | Input file |
System.IO.FileInfo | outputFileInfo | Output file |
System.String[] | options | Array of System.String parameters |
OSGeo.GDAL.Gdal.GDALProgressFuncDelegate | callback | Delegate for for progress reporting from Gdal |
Returns:
System.Threading.Tasks.ValueTask
.
Description: Runs GdalInfo with passed parameters.
Syntax:
public static async ValueTask<string> InfoAsync(FileInfo inputFileInfo, string[] options = null)
Parameters:
Type | Name | Description |
---|---|---|
System.IO.FileInfo | inputFileInfo | Input file |
System.String[] | options | Array of System.String parameters |
Returns:
System.Threading.Tasks.ValueTask<string>
from GdalInfo.