Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Core
Imports Leadtools.ImageProcessing.Color
Imports Leadtools.WinForms
Imports Leadtools.Dicom
Imports Leadtools.Drawing
Private Sub DisplayGeoKey(ByVal key As RasterTagMetadata)
Select Case key.DataType
Case RasterTagMetadataDataType.Ascii
MessageBox.Show("Key " & key.Id.ToString() & " = " & key.ToAscii())
Case RasterTagMetadataDataType.Byte
MessageBox.Show("Key " & key.Id.ToString() & " = " & key.ToByte()(0).ToString())
End Select
End Sub
Public Sub GeoKeysExample()
Dim codecs As RasterCodecs = New RasterCodecs()
Dim image As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP"))
' Ascii
Dim keyDataAscii As RasterTagMetadata = New RasterTagMetadata()
' set the GTCitationGeoKey key, for more info, refer to the Geo TIFF spec.
keyDataAscii.Id = 1026
keyDataAscii.DataType = RasterTagMetadataDataType.Ascii
keyDataAscii.FromAscii("Test String")
image.GeoKeys.Add(keyDataAscii)
codecs.Options.Save.GeoKeys = True
codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1_GEOKEY.TIF"), RasterImageFormat.GeoTiff, 0)
' load the GeoKeys together with the image
Dim key As RasterTagMetadata = codecs.ReadGeoKey(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1_GEOKEY.TIF"), 1, keyDataAscii.Id)
DisplayGeoKey(key)
codecs.Dispose()
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.WinForms;
using Leadtools.Dicom;
using Leadtools.Drawing;
private void DisplayGeoKey(RasterTagMetadata key)
{
switch(key.DataType)
{
case RasterTagMetadataDataType.Ascii:
MessageBox.Show("Key " + key.Id.ToString() + " = " + key.ToAscii());
break;
case RasterTagMetadataDataType.Byte:
MessageBox.Show("Key " + key.Id.ToString() + " = " + key.ToByte()[0].ToString());
break;
}
}
public void GeoKeysExample()
{
RasterCodecs codecs = new RasterCodecs();
RasterImage image = codecs.Load(Path.Combine(ImagesPath.Path, "IMAGE1.CMP"));
// Ascii
RasterTagMetadata keyDataAscii = new RasterTagMetadata();
// set the GTCitationGeoKey key, for more info, refer to the Geo TIFF spec.
keyDataAscii.Id = 1026;
keyDataAscii.DataType = RasterTagMetadataDataType.Ascii;
keyDataAscii.FromAscii("Test String");
image.GeoKeys.Add(keyDataAscii);
codecs.Options.Save.GeoKeys = true;
codecs.Save(image, Path.Combine(ImagesPath.Path, "IMAGE1_GEOKEY.TIF"), RasterImageFormat.GeoTiff, 0);
// load the GeoKeys together with the image
RasterTagMetadata key = codecs.ReadGeoKey(Path.Combine(ImagesPath.Path, "IMAGE1_GEOKEY.TIF"), 1, keyDataAscii.Id);
DisplayGeoKey(key);
codecs.Dispose();
}
function DisplayGeoKey(key)
{
switch (key.dataType)
{
case Leadtools.RasterTagMetadataDataType.ascii:
console.info("Key " + key.id.toString() + " = " + key.toAscii());
break;
case Leadtools.RasterTagMetadataDataType.byte:
console.info("Key " + key.id.toString() + " = " + key.toByte()[0].toString());
break;
}
}
RasterImageExamples.prototype.GeoKeysExample = function () {
Tools.SetLicense();
with (Leadtools) {
with (Leadtools.Codecs) {
var codecs = new RasterCodecs();
var srcFileName = "Assets\\Image1.cmp";
var image;
var keyDataAscii;
return Tools.AppInstallFolder().getFileAsync(srcFileName).then(function (loadFile) {
return codecs.loadAsync(LeadStreamFactory.create(loadFile))
})
.then(function (img) {
image = img;
// Ascii
keyDataAscii = new RasterTagMetadata();
// set the GTCitationGeoKey key, for more info, refer to the Geo TIFF spec.
keyDataAscii.id = 1026;
keyDataAscii.dataType = RasterTagMetadataDataType.ascii;
keyDataAscii.fromAscii("Test String");
image.geoKeys.append(keyDataAscii);
codecs.options.save.geoKeys = true;
return Tools.AppLocalFolder().createFileAsync("IMAGE1_GEOKEY.TIF")
})
.then(function (saveFile) {
var saveStream = LeadStreamFactory.create(saveFile);
return codecs.saveAsync(image, saveStream, RasterImageFormat.geoTiff, 0)
})
.then(function () {
// load the GeoKeys together with the image
return Tools.AppLocalFolder().getFileAsync("IMAGE1_GEOKEY.TIF")
})
.then(function (loadFile) {
return codecs.readGeoKeyAsync(LeadStreamFactory.create(loadFile), 1, keyDataAscii.id)
})
.then(function (key) {
DisplayGeoKey(key);
image.close();
codecs.close();
});
}
}
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.Dicom;
private void DisplayGeoKey(RasterTagMetadata key)
{
switch (key.DataType)
{
case RasterTagMetadataDataType.Ascii:
Debug.WriteLine("Key " + key.Id.ToString() + " = " + key.ToAscii());
break;
case RasterTagMetadataDataType.Byte:
Debug.WriteLine("Key " + key.Id.ToString() + " = " + key.ToByte()[0].ToString());
break;
}
}
public async Task GeoKeysExample()
{
RasterCodecs codecs = new RasterCodecs();
string srcFileName = @"Assets\Image1.cmp";
StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));
// Ascii
RasterTagMetadata keyDataAscii = new RasterTagMetadata();
// set the GTCitationGeoKey key, for more info, refer to the Geo TIFF spec.
keyDataAscii.Id = 1026;
keyDataAscii.DataType = RasterTagMetadataDataType.Ascii;
keyDataAscii.FromAscii("Test String");
image.GeoKeys.Add(keyDataAscii);
codecs.Options.Save.GeoKeys = true;
StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync("IMAGE1_GEOKEY.TIF");
ILeadStream saveStream = LeadStreamFactory.Create(saveFile);
await codecs.SaveAsync(image, saveStream, RasterImageFormat.GeoTiff, 0);
// load the GeoKeys together with the image
loadFile = await Tools.AppLocalFolder.GetFileAsync("IMAGE1_GEOKEY.TIF");
RasterTagMetadata key = await codecs.ReadGeoKeyAsync(LeadStreamFactory.Create(loadFile), 1, keyDataAscii.Id);
DisplayGeoKey(key);
codecs.Dispose();
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Dicom;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.Examples;
using Leadtools.Windows.Media;
private void DisplayGeoKey(RasterTagMetadata key)
{
switch (key.DataType)
{
case RasterTagMetadataDataType.Ascii:
Debug.WriteLine("Key " + key.Id.ToString() + " = " + key.ToAscii());
break;
case RasterTagMetadataDataType.Byte:
Debug.WriteLine("Key " + key.Id.ToString() + " = " + key.ToByte()[0].ToString());
break;
}
}
public void GeoKeysExample(RasterImage image, Stream destStream)
{
// Ascii
RasterTagMetadata keyDataAscii = new RasterTagMetadata();
// set the GTCitationGeoKey key, for more info, refer to the Geo TIFF spec.
keyDataAscii.Id = 1026;
keyDataAscii.DataType = RasterTagMetadataDataType.Ascii;
keyDataAscii.FromAscii("Test String");
image.GeoKeys.Add(keyDataAscii);
RasterCodecs codecs = new RasterCodecs();
codecs.Options.Save.GeoKeys = true;
codecs.Save(image, destStream, RasterImageFormat.GeoTiff, 0);
// load the GeoKeys together with the image
RasterTagMetadata key = codecs.ReadGeoKey(destStream, 1, keyDataAscii.Id);
DisplayGeoKey(key);
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Dicom
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Core
Imports Leadtools.ImageProcessing.Color
Imports Leadtools.Windows.Media
Private Sub DisplayGeoKey(ByVal key As RasterTagMetadata)
Select Case key.DataType
Case RasterTagMetadataDataType.Ascii
Debug.WriteLine("Key " & key.Id.ToString() & " = " & key.ToAscii())
Case RasterTagMetadataDataType.Byte
Debug.WriteLine("Key " & key.Id.ToString() & " = " & key.ToByte()(0).ToString())
End Select
End Sub
Public Sub GeoKeysExample(ByVal image As RasterImage, ByVal destStream As Stream)
' Ascii
Dim keyDataAscii As RasterTagMetadata = New RasterTagMetadata()
' set the GTCitationGeoKey key, for more info, refer to the Geo TIFF spec.
keyDataAscii.Id = 1026
keyDataAscii.DataType = RasterTagMetadataDataType.Ascii
keyDataAscii.FromAscii("Test String")
image.GeoKeys.Add(keyDataAscii)
Dim codecs As RasterCodecs = New RasterCodecs()
codecs.Options.Save.GeoKeys = True
codecs.Save(image, destStream, RasterImageFormat.GeoTiff, 0)
' load the GeoKeys together with the image
Dim key As RasterTagMetadata = codecs.ReadGeoKey(destStream, 1, keyDataAscii.Id)
DisplayGeoKey(key)
End Sub