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 !... More resources GitHub examples You may easily...
Example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties...GetExtension ( file ))); } } } More resources GitHub examples You may easily...
Extract information about the known properties available in a particular package using GroupDocs.Metadata for Python via .NET.... See also More resources GitHub examples You may easily...
Add metadata properties — one of the most powerful features of the GroupDocs.Metadata for Python via .NET search engine....Binary file (DOCX, 14 KB) More resources Advanced usage topics To learn...
Locate and remove the metadata properties you don't want — by tag, category, name, type or value — with GroupDocs.Metadata for Python via .NET....Binary file (DOCX, 13 KB) More resources Advanced usage topics To learn...
Unlock the power of text search using GroupDocs.Search! Learn how to search text-based documents using regular expressions....links for more details and resources: Documentation Examples on...
Editing Excel files is explained with C# examples to edit XLS, XLSX, ODS files within your .NET application using spreadsheet and document editing API....extract the images and all the resources from the selected tab. Create...
Extract images from emails, by default images are extracted with its original format...imageNumber ++; } } More resources GitHub examples You may easily...