Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images.
The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes).
Load a JPEG2000 image Get the root metadata package Extract the native metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments
using (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { var root = metadata.GetRootPackage(); if (root....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...
This article gives the knowledge of the case sensitive search which allows you to find words considering uppercase and lowercase letters as distinct....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...
This article gives the knowledge of the API methods which can be used to perform operations about Alphabets using Java....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...
GroupDocs.Metadata for Node.js provides free technical support available to all users. Please report your question, issue, or feature request using GroupDocs Free Support Forum....Editor Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...
Convert PowerPoint presentations to HTML, PDF, PNG, or JPEG using the GroupDocs.Viewer Python API....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...
This article explains that how to optimize index to reduce the number of segments in an index using Java....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...
This article explains that how to detect encoding of a text file automatically in Java....Editor Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...
This article gives the knowledge of the API methods which can be used to perform operations about spelling corrector....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...
This article explains how to search for embedded electronic signatures with custom serialization in Document metadata. This topic contains example of custom serialization, class definition and search for serialized objects in the Document metadata with GroupDocs.Signature....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...
Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images.
The following are the steps to read the native PNG metadata.
Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks
using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...