Sort Score
Result 10 results
Languages All
Labels All
Results 211 - 220 of 1,335 for

metadata management

(0.02 sec)
  1. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired Metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors JavaScript const Metadata = new groupdocs.Metadata.Metadata("input.doc"); var root = Metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iMetadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  2. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/get-document-i...
  3. Handling the ID3v1 tag | Documentation

    This article explains how to handle ID3v1 tag....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/handling-the-id...
  4. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/load-a-password...
  5. Manage XMP and EXIF Data of HEIF HEIC Images us...

    Manage XMP and EXIF data of HEIF, HEIC images using C#. Read, update, remove EXIF and XMP data using Metadata automation API within .NET applications....XML-based metadata standard, that can store metadata properties...standard and defines how to store metadata properties in the most common...

    blog.groupdocs.com/metadata/manage-xmp-and-exif...
  6. Working with interpreted values | Documentation

    This article contains a good example of numeric flag or enumeration....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-in...
  7. Working with ZIP archives | Documentation

    Get ZIP format Metadata The API allows detecting ZIP archives and reading format Metadata. The following steps are needed to be followed: Load a ZIP archive Get the root Metadata package Extract the native Metadata package using ZipRootPackage.ZipPackage Read the ZIP archive properties Loop through ZipPackage.Files to extract information about archived files The following code snippet shows how to get Metadata from a ZIP archive. AdvancedUsage.ManagingMetadataForSpecificFormats.Archive.ZipReadNativeMetadataProperties Encoding encoding = Encoding....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-zi...
  8. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/get-docu...
  9. Extracting common image information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root Metadata package Use the getImageType method to obtain file format information advanced_usage.managing_Metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata Metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/extracting-com...
  10. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired Metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata Metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = Metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/getting-known-...