←Select platform

GetFileInformation(Stream) Method

Summary
Gets JPEG 2000 file information from a stream.

Syntax
C#
C++/CLI
Python
public Jpeg2000FileInformation GetFileInformation( 
   Stream stream 
) 
public: 
Jpeg2000FileInformation GetFileInformation(  
   Stream^ stream 
)  
def GetFileInformation(self,stream): 

Parameters

stream
A System.IO.Stream containing the JPEG 2000 stream data.

Return Value

A Jpeg2000FileInformation object that contains the information about the specified JPEG 2000 stream.

Remarks

All engine boxes will be reset.

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 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Jpeg2000 Assembly

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