 | CIMUGridTiff Method |
Generate a Tiff (Tagged-Image file format) file with up to 16 grids.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GridTiff(
string grds,
string tiff,
string bcol,
int red,
int green,
int blue,
double csize,
int reg,
double scale
)
public static void GridTiff(
string grds,
string tiff,
string bcol,
int red,
int green,
int blue,
double csize,
int reg,
double scale
)
Public Shared Sub GridTiff (
grds As String,
tiff As String,
bcol As String,
red As Integer,
green As Integer,
blue As Integer,
csize As Double,
reg As Integer,
scale As Double
)
Public Shared Sub GridTiff (
grds As String,
tiff As String,
bcol As String,
red As Integer,
green As Integer,
blue As Integer,
csize As Double,
reg As Integer,
scale As Double
)
public:
static void GridTiff(
String^ grds,
String^ tiff,
String^ bcol,
int red,
int green,
int blue,
double csize,
int reg,
double scale
)
public:
static void GridTiff(
String^ grds,
String^ tiff,
String^ bcol,
int red,
int green,
int blue,
double csize,
int reg,
double scale
)
static member GridTiff :
grds : string *
tiff : string *
bcol : string *
red : int *
green : int *
blue : int *
csize : float *
reg : int *
scale : float -> unit
static member GridTiff :
grds : string *
tiff : string *
bcol : string *
red : int *
green : int *
blue : int *
csize : float *
reg : int *
scale : float -> unit
Parameters
- grds
- Type: SystemString
Comma-delimited string containing names of all grids to use in Tiff generation Up to 16 grids allowed. - tiff
- Type: SystemString
Name of Tiff file to create - bcol
- Type: SystemString
Background color option. One of W (White) K (Black) C (Cyan) M (Magenta) Y (Yellow) R (Red) G (Green) B (Blue) - red
- Type: SystemInt32
Background Red value (0-255) - green
- Type: SystemInt32
Background Green (0-255) - blue
- Type: SystemInt32
Background Blue (0-255) - csize
- Type: SystemDouble
New cell size - reg
- Type: SystemInt32
Pixel size of registration marks - scale
- Type: SystemDouble
Map scale
Remarks
The background color can be either selected
from one of 8 settings, or can be specified
as a combination of Reg,Green, and Blue values.
See Also