Jpeg2000WriterWrite Method (Uri, Jpeg2000CompressionProfile, Int32, Uri, 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 must be in the image, as in a GeoTIFF.
 
    Namespace: 
   AGI.Foundation.Graphics.Imaging
    Assembly:
   AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static void Write(
	Uri imageUri,
	Jpeg2000CompressionProfile compressionProfile,
	int compressionRate,
	Uri jpeg2000Uri,
	bool overwriteExistingFile
)
Public Shared Sub Write ( 
	imageUri As Uri,
	compressionProfile As Jpeg2000CompressionProfile,
	compressionRate As Integer,
	jpeg2000Uri As Uri,
	overwriteExistingFile As Boolean
)
public:
static void Write(
	Uri^ imageUri, 
	Jpeg2000CompressionProfile compressionProfile, 
	int compressionRate, 
	Uri^ jpeg2000Uri, 
	bool overwriteExistingFile
)
static member Write : 
        imageUri : Uri * 
        compressionProfile : Jpeg2000CompressionProfile * 
        compressionRate : int * 
        jpeg2000Uri : Uri * 
        overwriteExistingFile : bool -> unit 
Parameters
- imageUri
 - Type: SystemUri
The image filename to be converted. Only file URIs are supported. - 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: SystemUri
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