←Select platform

Jpeg2000FileInformation Structure

Summary
Provides information about JPEG 2000 file contents.

Syntax
C#
C++/CLI
Python
public struct Jpeg2000FileInformation 
public value class Jpeg2000FileInformation : public System.ValueType  
class Jpeg2000FileInformation: 
Example
C#
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); 
} 
Requirements

Target Platforms

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

Leadtools.Jpeg2000 Assembly

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