Sort Score
Result 10 results
Languages All
Labels All
Results 371 - 380 of 1,386 for

document management

(0.03 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 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...examples: Free online document metadata management App Along with full...

    docs.groupdocs.com/metadata/java/getting-known-...
  2. GroupDocs.Metadata for .NET 1.7.0 Released with...

    GroupDocs.Metadata for .NET version 1.7 is available now. Code is redefined by decreasing number of namespaces for easy integration. One major enhancement is support for MP3 format. So Management of audio format metadata is more easy with this release. Metadata API extended features MP3 format supported - Detect MP3 format Reading ID3v1 Tag Reading ID3v2 Tag Get MPEG Audio format Information Read all EXIF tags Get specific EXIF tag by specific key or indexer .... So management of audio format metadata...DLLs NuGet - Nuget install Documentation Examples/Plugins/Showcases...

    blog.groupdocs.com/metadata/groupdocs-metadata-...
  3. Working with metadata in JPEG2000 images | Docu...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images. The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes). Load a JPEG2000 image Get the root metadata package Extract the native metadata package using the Jpeg2000RootPackage.getJpeg2000Package method Read the JPEG2000 comments advanced_usage.managing_metadata_for_specific_formats.image.jpeg2000.Jpeg2000ReadComments try (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { Jpeg2000RootPackage root = metadata....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Working with metadata in MOV files | Documentation

    Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/Documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using the MovRootPackage.getMovPackage method Read the QuickTime atoms advanced_usage....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Convert XLSX to MD using Node.js

    Learn how to convert XLSX to MD using Node.js with a smooth and efficient workflow. This guide helps you export XLSX to MD in Node.js with accurate formatting....formats for use in documentation, content management, or version control...Markdown using a powerful document conversion library that integrates...

    kb.groupdocs.com/conversion/nodejs/convert-xlsx...
  6. Traverse a whole metadata tree | Documentation

    This article explains that the GroupDocs.Metadata for Java represents any loaded file as a tree consisting of metadata properties and nested metadata packages. You can easily iterate through the metadata tree...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...properties extracted from a document, video, image, etc. GroupDocs...

    docs.groupdocs.com/metadata/java/traverse-a-who...
  7. Convert PPTX to TXT using Node.js

    Learn how to convert PPTX to TXT using Node.js for efficient Document processing. This guide helps you export PPTX to TXT in Node.js with a step-by-step approach....file and export it as a TXT document To start, we’ll use a Node...for a powerful Java-based document processing library. After...

    kb.groupdocs.com/conversion/nodejs/convert-pptx...
  8. 2021 September | File Format Blog

    Monthly Archives: September 2021 Top 5 GIS File Formats for Google Maps Posted on September 25, 2021 by Kashif Iqbal ......either we are writing business documents (e.g. letters, applications...requires efficient disk storage management. Moreover, fast and effective...

    blog.fileformat.com/2021/09/
  9. Working with metadata in ProjectManagement form...

    GroupDocs.Metadata for Java provides functionality that allows working with MPP files created by different versions of Microsoft Project. Please see the code samples below for more information. Reading built-In metadata properties To access built-in metadata of a ProjectManagement Document, please use the getDocumentProperties method defined in the DocumentRootPackage class. The following code snippet extracts built-in metadata properties and displays them on the screen. advanced_usage.managing_metadata_for_specific_formats.Document.project_Management.ProjectManagementReadBuiltInProperties try (Metadata metadata = new Metadata(Constants.InputMpp)) { ProjectManagementRootPackage root = metadata....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Usage / Managing metadata for specific formats / Documents / Working...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Perform Faceted Search using Java

    This topic will guide you on how to perform faceted search using Java. You’ll find code to create faceted search in Java without the need for any additional tools....a storage location where documents will be indexed for streamlined...example, in a document repository, facets like document type, creation...

    kb.groupdocs.com/search/java/perform-faceted-se...