Sort Score
Result 10 results
Languages All
Labels All
Results 431 - 440 of 973 for

information extraction

(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....Purchase Buy Now Pricing Information Free Trials Temporary License...demonstrates how to extract information about known properties...

    docs.groupdocs.com/metadata/java/getting-known-...
  2. Working with metadata in ASF files | Documentation

    Reading ASF format-specific properties The GroupDocs.Metadata API supports extracting format-specific Information from ASF files. The following are the steps to read native ASF metadata. Load an ASF video Get the root metadata package Extract the native metadata package using the AsfRootPackage.getAsfPackage method Read the ASF metadata properties advanced_usage.managing_metadata_for_specific_formats.video.asf.AsfReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputAsf)) { AsfRootPackage root = metadata.getRootPackageGeneric(); AsfPackage asfPackage = root.getAsfPackage(); // Display basic properties System.out.println(String.format("Creation date: %s", asfPackage....Purchase Buy Now Pricing Information Free Trials Temporary License...API supports extracting format-specific information from ASF files...

    docs.groupdocs.com/metadata/java/working-with-m...
  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;iInformation Free Trials Temporary License...demonstrates how to extract information about known properties...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  4. Highlight Search Results using C#

    Learn how to highlight search results using C# with our guide. Moreover, we will provide code example to highlight search results in C# for better document management....distinguishing relevant information in search results. This guide...easier for users to find the information they need quickly and effectively...

    kb.groupdocs.com/search/net/highlight-search-re...
  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: (detected...

    docs.groupdocs.com/metadata/java/get-document-i...
  6. 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 the OpenTypeRootPackage....Purchase Buy Now Pricing Information Free Trials Temporary License...behavior. Note Please find more information on the OpenType format here:...

    docs.groupdocs.com/metadata/java/working-with-o...
  7. Indexing with stop words | Documentation

    This article demonstrates that how you can enable or disable the use of stop words by setting a value using search API...Purchase Buy Now Pricing Information Free Trials Temporary License...the index is reloaded. For information on managing the stop word...

    docs.groupdocs.com/search/net/indexing-with-sto...
  8. Java File Search - Search Multiple Texts in Fil...

    Search for multiple texts or phrases in various files spread across diverse folders using Java. Highlight scanning results in respective HTML files....Access or print any file information for the found document. Set...query, you can further extract information about the found documents...

    blog.groupdocs.com/search/search-multiple-texts...
  9. 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/net/working-with-to...
  10. Working with metadata in Presentations | Docume...

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported document formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format Information. Load a presentation Extract the root metadata package Use the getPresentationType method to obtain file format Information advanced_usage....Purchase Buy Now Pricing Information Free Trials Temporary License...presentation and extract some additional file format information. a presentation...

    docs.groupdocs.com/metadata/java/working-with-m...