Jpeg2000WriterWrite Method (String, CartographicExtent, Jpeg2000CompressionProfile, Int32, String, Boolean) |
Converts an image, such as a BMP, to a GeoJP2 file that can be used as an image globe overlay. The
extent of the image can be defined as an input parameter if necessary.
Namespace:
AGI.Foundation.Graphics.Imaging
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static void Write(
string imageUri,
CartographicExtent extent,
Jpeg2000CompressionProfile compressionProfile,
int compressionRate,
string jpeg2000Uri,
bool overwriteExistingFile
)
Public Shared Sub Write (
imageUri As String,
extent As CartographicExtent,
compressionProfile As Jpeg2000CompressionProfile,
compressionRate As Integer,
jpeg2000Uri As String,
overwriteExistingFile As Boolean
)
public:
static void Write(
String^ imageUri,
CartographicExtent^ extent,
Jpeg2000CompressionProfile compressionProfile,
int compressionRate,
String^ jpeg2000Uri,
bool overwriteExistingFile
)
static member Write :
imageUri : string *
extent : CartographicExtent *
compressionProfile : Jpeg2000CompressionProfile *
compressionRate : int *
jpeg2000Uri : string *
overwriteExistingFile : bool -> unit
Parameters
- imageUri
- Type: SystemString
The image filename to be converted. Only file URIs are supported. - extent
- Type: AGI.Foundation.CoordinatesCartographicExtent
The extent of the image. The extent can be null if the image defines the extent as with a GeoTIFF image. - compressionProfile
- Type: AGI.Foundation.Graphics.ImagingJpeg2000CompressionProfile
The compression profile. - compressionRate
- Type: SystemInt32
A higher compression rate results in smaller JPEG 2000 files. Use 1 for no compression. Valid values are 1 to 65535. - jpeg2000Uri
- Type: SystemString
The JPEG 2000 filename. Only file URIs are supported. - overwriteExistingFile
- Type: SystemBoolean
If true and the JPEG 2000 file already exists, the file will be overwritten during the conversion.
See Also