Sort Score
Result 10 results
Languages All
Labels All
Results 701 - 710 of 8,522 for

metadata

(0.09 sec)
  1. Migration Notes | Documentation

    Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Parser for Java since version 19.11: Parser class is introduced as a single entry point to extract data from the document. Data extraction was unified for all data types. The overall document related classes were unified to common. Product architecture was redesigned from scratch in order to simplify passing options and classes to manipulate data....Metadata Product Solution GroupDocs...getDocumentInfo (). getFileType ()); } Metadata Old coding style // Create...

    docs.groupdocs.com/parser/java/migration-notes/
  2. 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-...
  3. 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...
  4. GroupDocs.Metadata for .NET v1.3.0 introduces n...

    GroupDocs team is pleased to announce another monthly release of GroupDocs.Metadata for .NET version 1.3.0 with extended features for existing supported formats and support of new file formats. Moreover, in this version, the team introduces Metadata Replace API to find and replace Metadata properties in document formats. Not only this, but the user will also be able to define his/her custom logic to replace Metadata properties in supported documents. Let’s see what’s more in this new package....Metadata for .NET version 1.3.0 with...introduces Metadata Replace API to find and replace metadata properties...

    blog.groupdocs.com/metadata/groupdocs-metadata-...
  5. Basic Usage | Documentation

    Quick Start section for GroupDocs.Metadata API Manage Metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/basic-us...
  6. GroupDocs.Metadata for .NET 17.1.0 Now Detects ...

    GroupDocs team is really delighted to announce the release of** GroupDocs.Metadata for .NET version 17.01.0**. The latest release comes up with a number of new features and enhancements. Users can now detect or remove digital signatures from documents. The API has also improved document’s information retrieval and implements the ability to recognize file type of a document. And That’s not all! The API has also introduced some really exciting enhancements related to power point presentation documents and audio formats....Metadata for .NET version 17.01.0 **...in this version. GroupDocs.Metadata for .NET 17.01 - New Features...

    blog.groupdocs.com/metadata/releasing-goupdocs....
  7. Features Overview | Documentation

    A Node.js via Java Metadata API can be effectively used in removing, updating and reading Metadata in a variety of formats. It is very effective in removing Metadata from photos. Supporting iptc Metadata, exif Metadata and xmp Metadata....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/feature...
  8. Features Overview | Documentation

    A Python via .NET Metadata API can be effectively used in removing, updating and reading Metadata in a variety of formats. It is very effective in removing Metadata from photos. Supporting iptc Metadata, exif Metadata and xmp Metadata....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/features...
  9. Extract attachments from Emails | Documentation

    Extract email attachments using GroupDocs.Parser for .NET...Metadata Product Solution GroupDocs...can contain the following metadata: Name Description content-type...

    docs.groupdocs.com/parser/net/extract-attachmen...
  10. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk in Java...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/save-a-...