This article explains how to handle ID3v2 tag....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, PDF, PPT, JPG, PNG, HTML, EML and many more...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
What is EPUB? EPUB is an e-book File format that uses the “.epub” File extension. EPUB is supported by many e-readers, and compatible software is available for most smartphones, tablets, and computers. Note Please find more information on the format at https://en.wikipedia.org/wiki/EPUB Reading EPUB format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from EPUB Files.
The following are the steps to read native EPUB metadata.
Load an EPUB File Get the root metadata package Extract the native metadata package using EpubRootPackage....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article explains how to verify signatures with LINQ query with GroupDocs.Signature API....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
How to migrate from earlier versions of GroupDocs.Merger for Java...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
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;iTemporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
Reading Photoshop Metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a PSD image. For more information on the Photoshop File format and metadata blocks please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/Fileformatashtml/.
The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop File format) from a PSD image.
Load a PSD File Get the root metadata package Extract the ImageResourcePackage instance and obtain a list of ImageResourceBlock objects Iterate trough the collection of resource blocks AdvancedUsage....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
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....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
The easiest way to remove metadata properties from a File is to use corresponding tags that allow you to locate the desired properties across all metadata packages....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
Learn how to install GroupDocs.Conversion for Java. Follow a step-by-step guide for Maven, Gradle, Kotlin, and manual JAR setup, and integrate seamless document conversion into your Java projects....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...