Sort Score
Result 10 results
Languages All
Labels All
Results 71 - 80 of 16,724 for

metadata management

(0.05 sec)
  1. Working with metadata in JPEG2000 images | Docu...

    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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. Working with metadata in PNG images | Documenta...

    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.getPngPackage Read the PNG Metadata properties advanced_usage.managing_Metadata_for_specific_formats.image.png.PngReadTextChunks try (Metadata Metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = Metadata.getRootPackageGeneric(); for (PngTextChunk chunk : root.getPngPackage().getTextChunks()) { System.out.println(chunk.getKeyword()); System.out.println(chunk.getText()); if (chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) chunk; System....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. Read Metadata from PDF using C#

    Learn how to read Metadata from PDF using C# without requiring extra software installation. Delve into a code sample demonstrating how to read Metadata of PDF using C#....Metadata Product Family GroupDocs.Search...Family Read Metadata from PDF using C# Metadata in PDF files...

    kb.groupdocs.com/metadata/net/read-metadata-fro...
  4. Working with XMP metadata | Documentation

    This article shows how to access XMP Metadata in a file of any supported format....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-xm...
  5. Convert project management formats | Documentation

    This article demonstrates how you can convert to and from project Management formats with GroupDocs.Conversion for Node.js via Java....Metadata Product Solution GroupDocs...Project management formats Convert project management formats...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  6. Working with metadata in TIFF images | Document...

    Working with XMP Metadata GroupDocs.Metadata for Java allows managing XMP Metadata in TIFF images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF Metadata The GroupDocs.Metadata API supports handling EXIF Metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section. Working with IPTC Metadata GroupDocs.Metadata for Java is also able to work with IPTC Metadata in TIFF images....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Working with metadata in TIFF images | Document...

    Working with XMP Metadata GroupDocs.Metadata for .NET allows managing XMP Metadata in TIFF images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF Metadata The GroupDocs.Metadata API supports handling EXIF Metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section. Working with IPTC Metadata GroupDocs.Metadata for .NET is also able to work with IPTC Metadata in TIFF images....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Working with metadata in PNG images | Documenta...

    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 !...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root Metadata package Extract the native Metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_Metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata Metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP Metadata GroupDocs....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Traverse a whole metadata tree | Documentation

    This article explains that the GroupDocs.Metadata for Java represents any loaded file as a tree consisting of Metadata properties and nested Metadata packages. You can easily iterate through the Metadata tree...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/traverse-a-who...