Sort Score
Result 10 results
Languages All
Labels All
Results 1,561 - 1,570 of 2,566 for

document information extraction

(0.04 sec)
  1. 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...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. GroupDocs.Viewer For .NET 16.10 Release Notes |...

    Note This page contains release notes for GroupDocs.Viewer for .NET 16.10.0. Major Features There are 1 new feature and 8 improvements and fixes in this regular monthly release. The most notable are: Improved rendering Slides Documents by removing embedded audios Improved extracting Document Information MOBI file format rendering support Fixed rendering of DWG Documents which were rendered into small image or into image with dots Full List of Issues Covering all Changes in this Release Key Summary Category VIEWERNET-888 Mobi format support New Feature VIEWERNET-913 Remove embedded audios from presentation Improvement VIEWERNET-942 Invalid rendering of DWG file into Image or HTML Bug VIEWERNET-922 GetDocumentInfo() method is throwing exception Bug VIEWERNET-918 Failed to load XPS file in evaluation mode Bug VIEWERNET-910 Dwg Document is rendered into small image....Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/groupdocs-viewer-...
  3. GroupDocs.Parser for Java 18.7 Release Notes | ...

    Note This page contains release notes for GroupDocs.Parser for Java 18.7. Major Features This is the first version of GroupDocs.Parser for Java. The most notable features are: Extract text from various Document formats Extract main Document properties Extract text and metadata from containers (PST, OST, ZIP containers are currently supported) Extract text and metadata from mail servers (POP, IMAP and Microsoft Exchange Server are supported) Extract formatted text. Plain text, Markdown, and HTML formatters are present Extract structured text Support password protected Document (ability to provide the password if it is required) Service functions like encoding detection, media type detection and the ability to connect the logger Search text in Documents Text analysis API (Pdf format is currently supported) All Changes This is the first version of GroupDocs....Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/groupdocs-parser...
  4. package-use - GroupDocs.Redaction for Java - AP...

    All Classes Packages com.groupdocs.redaction com.groupdocs.redaction.configuration com.groupdocs.redaction.exceptions......redacting sensitive information from documents in PDF, raster image...image and office document formats. com.groupdocs.redaction.integration...

    apireference.groupdocs.com/redaction/java/com.g...
  5. Working with metadata in AVI files | Documentation

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific Information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using AviRootPackage.Header Read the AVI header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Avi.AviReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputAvi)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.AviHeaderFlags); Console.WriteLine(root.Header.Height); Console.WriteLine(root.Header.Width); Console.WriteLine(root.Header.TotalFrames); Console.WriteLine(root.Header.InitialFrames); Console.WriteLine(root.Header.MaxBytesPerSec); Console.WriteLine(root.Header.PaddingGranularity); Console.WriteLine(root.Header.Streams); // ....Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Handling metadata in WAV files | Documentation

    This article explains about the API supports extracting metadata from WAV files...Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/handling-metad...
  7. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific Information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-bm...
  8. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific Information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-b...
  9. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting format-specific Information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-d...
  10. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific Information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with XMP metadata GroupDocs....Purchase Buy Now Pricing Information Free Trials Temporary License...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...