Sort Score
Result 10 results
Languages All
Labels All
Results 1,011 - 1,020 of 31,015 for

groupdocs metadata

(0.04 sec)
  1. Extracting property values | Documentation

    This article shows knowledge about The most common way to get the Metadata property value is to check its type and convert it to the appropriate platform-specific type....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/extracting-prop...
  2. Extracting property values | Documentation

    This article shows knowledge about The most common way to get the Metadata property value is to check its type and convert it to the appropriate platform-specific type in Java....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/extracting-pro...
  3. Working with OpenType fonts | Documentation

    OpenType is a format for scalable computer fonts. It was built on its predecessor TrueType, retaining TrueType’s basic structure and adding many intricate data structures for prescribing typographic behavior. Note Please find more information on the OpenType format here: https://en.wikipedia.org/wiki/OpenType. Reading OpenType Metadata The Groupdocs.Metadata API supports extracting format-specific information from OpenType font files. The following are the steps to read the header of an OpenType file. Load an OpenType font file Get the root Metadata package Extract the native Metadata package using OpenTypeRootPackage....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-op...
  4. How to Extract Text from Excel in C#

    This article provides stepwise instructions to extract Text from Excel in C# using simple API calls and a sample application to read Text from Excel file using C#....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/parser/net/how-to-extract-text...
  5. Update ID3v1 and ID3v2 Tag Using Properties wit...

    Groupdocs team is proudly announcing the monthly release of Groupdocs.Metadata for Java 18.2. Three **enhancements **and six **new features **are introduced in this release. You can now load and save EXIF Metadata for JPEG and TIFF formats with a better speed. You can also validate input Metadata before saving, read additional properties from ID3v2, update ID3v1/ID3v2 tag using properties, and read/update/remove image cover tag in MP3 file format. Furthermore, you can read image cover and version of EPUB file format as well....GroupDocs team is proudly announcing the monthly release of GroupDocs...GroupDocs.Metadata for Java 18.2 . Three **enhancements **and...

    blog.groupdocs.com/metadata/update-id3v1-and-id...
  6. Audio | Documentation

    Open Navigation Close Navigation Products Groupdocs.Total Product Family Groupdocs.Viewer Product Solution Groupdocs.......Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/audio/
  7. Audio | Documentation

    Learn about managing Metadata for Audio formats....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/audio/
  8. Advanced Usage | Documentation

    Open Navigation Close Navigation Products Groupdocs.Total Product Family Groupdocs.Viewer Product Solution Groupdocs.......Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/python-net/advanced...
  9. Migration Notes | Documentation

    Why To Migrate? Here are the key reasons to use the new API provided by Groupdocs.Metadata for Java starting from version 20.2: The* Metadata* class is introduced as a single entry point to manage Metadata in files of all supported formats. Extracting and updating Metadata was unified for all supported formats. The product architecture was redesigned from scratch in order to simplify most common operations with Metadata properties. Getting document information and preview generation procedures were simplified....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/migration-notes/
  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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

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