Sort Score
Result 10 results
Languages All
Labels All
Results 401 - 410 of 950 for

information extraction

(0.05 sec)
  1. GroupDocs.Watermark Overview | Documentation

    GroupDocs.Watermark for Node.js via Java is a powerful API for managing watermarks in the various documents formats such as PDF, DOCX/DOC/RTF, PPTX/PPT, XLSX/XLS, JPG, PNG, TIFF, GIF and many others....Purchase Buy Now Pricing Information Free Trials Temporary License...existing watermark objects. Extract information of watermark objects...

    docs.groupdocs.com/watermark/nodejs-java/groupd...
  2. Indexing with stop words | Documentation

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....Purchase Buy Now Pricing Information Free Trials Temporary License...the index is reloaded. For information on managing the stop word...

    docs.groupdocs.com/search/nodejs-java/indexing-...
  3. Remove Metadata from ODT using C#

    Discover how to effectively remove metadata from ODT using C#. This guide provides a code snippet showing the process of how to delete metadata from ODT in C#....metadata, including hidden information about the document, such...personal or confidential information, thus safeguarding privacy...

    kb.groupdocs.com/metadata/net/remove-metadata-f...
  4. Working with slide backgrounds | Documentation

    The API allows you to extract Information about all the slide backgrounds, Removing a particular background and Adding watermark to all background images...Purchase Buy Now Pricing Information Free Trials Temporary License...The API allows you to extract information about all the slide backgrounds...

    docs.groupdocs.com/watermark/net/working-with-s...
  5. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta Information of a document....Purchase Buy Now Pricing Information Free Trials Temporary License...allows users to get document information which includes: File format...

    docs.groupdocs.com/metadata/python-net/get-docu...
  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....Purchase Buy Now Pricing Information Free Trials Temporary License...image and extract some additional file format information. a GIF...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Working with metadata in JPEG images | Document...

    Reading Photoshop metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a JPEG image. For more Information on the Photoshop file format and metadata blocks that can be attached to images of different formats 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 JPEG image....Purchase Buy Now Pricing Information Free Trials Temporary License...with a JPEG image. For more information on the Photoshop file format...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Working with TORRENT files | Documentation

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains Information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Purchase Buy Now Pricing Information Free Trials Temporary License...distributed; it only contains information about those files, such as...

    docs.groupdocs.com/metadata/java/working-with-t...
  9. GroupDocs.Search for .NET | Documentation

    GroupDocs.Search for .NET is a fascinating document search API. It extracts text and metadata from documents and performs advanced searching and indexing operations on the basis of fuzzy and synonym algorithm...Purchase Buy Now Pricing Information Free Trials Temporary License...fascinating document search API. It extracts text and metadata from documents...

    docs.groupdocs.com/search/net/
  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....Purchase Buy Now Pricing Information Free Trials Temporary License...demonstrates how to extract information about known properties...

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