AppendGmlData(string,GmlData) Method

Summary
Appends Geography Markup Language (GML) data to the specified JPEG 2000 file. This method is available in the Document/Medical Toolkits.
Syntax
C#
VB
C++
public void AppendGmlData( 
   string fileName, 
   GmlData gmlData 
) 
  
Public Overloads Sub AppendGmlData( _ 
   ByVal fileName As String, _ 
   ByVal gmlData As GmlData _ 
)  
public: 
void AppendGmlData(  
   String^ fileName, 
   GmlData^ gmlData 
)  

Parameters

fileName
System.String containing the name of the JPEG 2000 file.

gmlData
GmlData object containing the GML information being appended.

Example
C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Jpeg2000; 
 
public void AppendGmlDataStringExample(String inputFile, String outputFile, GmlElement newData) 
{ 
   Jpeg2000Engine engine = new Jpeg2000Engine(); 
   //Read GML data in the input file 
   GmlData gml = engine.ReadGmlData(inputFile); 
   //Add the new gml element data 
   gml.Data.Add(newData); 
   List<int> frames = new List<int>(); 
   //extract all inputfile frames 
   Jpeg2000FileInformation fileInfo = engine.GetFileInformation(inputFile); 
   for (int i = 0; i < fileInfo.Frame.GetLength(0); i++) 
      frames.Add(i); 
   engine.ExtractFrames(inputFile, outputFile, frames); 
   //add all GML data 
   engine.AppendGmlData(outputFile, gml); 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.Jpeg2000 
 
Private Sub AppendGmlDataStringExample(ByVal inputFile As String, ByVal outputFile As String, ByVal newData As GmlElement) 
   Dim engine As New Jpeg2000Engine() 
 
   ' Read GML data in the input file 
   Dim gml As GmlData = engine.ReadGmlData(inputFile) 
 
   ' Add the new gml element data 
   gml.Data.Add(newData) 
   Dim frames As New List(Of Integer) 
 
   ' extract all inputfile frames 
   Dim fileInfo As Jpeg2000FileInformation = engine.GetFileInformation(inputFile) 
   For i As Integer = 0 To fileInfo.Frame.GetLength(0) - 1 
      frames.Add(i) 
   Next i 
   engine.ExtractFrames(inputFile, outputFile, frames) 
 
   ' add all GML data 
   engine.AppendGmlData(outputFile, gml) 
End Sub 
Requirements

Target Platforms

Help Version 21.0.2021.6.30
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Jpeg2000 Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.