Sort Score
Result 10 results
Languages All
Labels All
Results 231 - 240 of 1,525 for

metadata management

(0.51 sec)
  1. Working with ZIP archives | GroupDocs

    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 the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get Metadata from a ZIP archive. advanced_usage.managing_Metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-z...
  2. Working with interpreted values | GroupDocs

    Understand and extract human-readable (interpreted) values for Metadata properties using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/working-...
  3. GroupDocs.Metadata for Java | GroupDocs

    Release notes Package repository GroupDocs.Metadata for Java - A Metadata Management API for documents to create, preview, analyze, update and remove meta information from all popular file formats. Java Metadata changer API gets the file as input, access the file property information and allows users to perform Metadata operations for locating this specific file easily for future reference. GroupDocs.Metadata supports over 170 popular file formats. Load text documents, spreadsheets, presentations, PDF files, web pages, email messages, and images and render/display them in HTML, PDF, PNG, and JPEG formats....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/
  4. Working with interpreted values | GroupDocs

    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...
  5. Get document info | GroupDocs

    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...
  6. Getting known property descriptors | GroupDocs

    Extract information about known properties available in a particular package using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/getting-...
  7. Load a file of a specific format | GroupDocs

    This example demonstrates how to load a file of a particular format using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/load-a-f...
  8. Getting known property descriptors | GroupDocs

    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-...
  9. Handling the Lyrics tag | GroupDocs

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

    docs.groupdocs.com/metadata/net/handling-the-ly...
  10. Extracting common image information | GroupDocs

    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...