Sort Score
Result 10 results
Languages All
Labels All
Results 391 - 400 of 720 for

document information extraction

(0.03 sec)
  1. GroupDocs.Metadata for Node.js via Java | Docum...

    Develop Applications to Create, View, Access, Update, Delete, Search, Compare, Replace & Export Metadata of Popular Documents & Image Formats....Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/
  2. Working with vCard metadata | Documentation

    What is vCard? vCard, also known as VCF (Virtual Contact File), is a file format standard for electronic business cards. vCards are often attached to e-mail messages, but can be exchanged in other ways. They can contain name and address Information, telephone numbers, e-mail addresses, URLs, logos, photographs, and even audio clips. Note For more Information on the format please see https://en.wikipedia.org/wiki/VCard Getting Simple vCard metadata To access Metadata in a vCard, GroupDocs....Purchase Buy Now Pricing Information Free Trials Temporary License...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-vc...
  3. Working with vCard metadata | Documentation

    What is vCard? vCard, also known as VCF (Virtual Contact File), is a file format standard for electronic business cards. vCards are often attached to e-mail messages, but can be exchanged in other ways. They can contain name and address Information, telephone numbers, e-mail addresses, URLs, logos, photographs, and even audio clips. Note For more Information on the format please see https://en.wikipedia.org/wiki/VCard Getting Simple vCard metadata To access Metadata in a vCard, GroupDocs....Purchase Buy Now Pricing Information Free Trials Temporary License...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-v...
  4. 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...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Working with metadata in EPUB E-Books | Documen...

    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....Purchase Buy Now Pricing Information Free Trials Temporary License...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  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 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....Purchase Buy Now Pricing Information Free Trials Temporary License...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. 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...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/getting-known-...
  8. 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...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  9. Working with Metadata in ASF Files | Documentation

    Working with metadata in ASF files 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 AsfRootPackage.AsfPackage Read the ASF metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Asf.AsfReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputAsf)) { var root = metadata.GetRootPackage(); var package = root.AsfPackage; // Display basic properties Console....Purchase Buy Now Pricing Information Free Trials Temporary License...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Working with slide backgrounds | Documentation

    Extracting Information about all slide backgrounds The API allows you to extract Information about all the slide backgrounds in a PowerPoint Document as shown in the following code sample using method getBackgroundImage() of PresentationSlide.getImageFillFormat(). advanced_usage.add_watermarks_to_presentations.PresentationGetSlideBackgroundsInformation PresentationLoadOptions loadOptions = new PresentationLoadOptions(); // Specify an absolute or relative path to your Document. Ex: "C:\\Docs\\presentation.pptx" Watermarker watermarker = new Watermarker("presentation.pptx", loadOptions); PresentationContent content = watermarker.getContent(PresentationContent.class); for (PresentationSlide slide : content.getSlides()) { if (slide....Purchase Buy Now Pricing Information Free Trials Temporary License...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/java/working-with-...