Sort Score
Result 10 results
Languages All
Labels All
Results 391 - 400 of 1,407 for

document management

(0.04 sec)
  1. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. 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...
  3. 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 JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iDocumentation / GroupDocs.Metadata Product...features and get familiar how to manage metadata and more, please refer...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  4. 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...
  5. Load document of specific format | Documentation

    This article explains how to load Document of specific format....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...Loading documents / Of specific format Load document of specific...

    docs.groupdocs.com/watermark/net/load-document-...
  6. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs....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...
  7. Perform Synonym Search using Java

    Learn how to perform synonym search using Java to enhance search accuracy. Explore Java search with synonym matching for comprehensive and relevant search results....accuracy and efficiency of document retrieval systems. It enables...in applications like document management systems, knowledge bases...

    kb.groupdocs.com/search/java/perform-synonym-se...
  8. Perform Synonym Search using C#

    Enhance search functionality with perform synonym search using C# to retrieve relevant results. Achieve accuracy with C# search with synonym matching solutions....efficiency and accuracy of document retrieval systems. It allows...are essential, such as document management systems, knowledge bases...

    kb.groupdocs.com/search/net/perform-synonym-sea...
  9. 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-...
  10. How to Add Text Signature to DOCX using C#

    In this tutorial, we will provide you guide on how to add text signature to DOCX using C#. We will also provide a code example to insert text signature to DOCX in C#....you can enhance your document management and streamline the signing...NET via the NuGet package manager for the insertion of text signature...

    kb.groupdocs.com/signature/net/how-to-add-text-...