Sort Score
Result 10 results
Languages All
Labels All
Results 951 - 960 of 1,375 for

extraction d

(0.04 sec)
  1. GroupDocs.Parser for .NET 17.07 Release Notes |...

    Note This page contains release notes for GroupDocs.Parser for .NET 17.7.0 Major Features There are the following features in this release: Implement the ability to extract a text from pDf portfolios Implement IContainer interface support for email text extractors Implement the support for DOT files Implement IPageTextExtractor interface All Changes Key Summary Issue Type TEXTNET-628 Implement the ability to extract a text from pDf portfolios New feature TEXTNET-648 Implement IContainer interface support for email text extractors New feature TEXTNET-650 Implement the support for DOT files New feature TEXTNET-666 Implement IPageTextExtractor interface New feature Public API anD BackwarD Incompatible Changes Note This section lists public API changes that were introDuceD in GroupDocs....release: Implement the ability to extract a text from pdf portfolios...TEXTNET-628 Implement the ability to extract a text from pdf portfolios...

    docs.groupdocs.com/parser/net/groupdocs-parser-...
  2. GroupDocs.Parser for .NET 23.2 Release Notes | ...

    Note This page contains release notes for GroupDocs.Parser for .NET 23.2 Full List of Issues Covering all Changes in this Release Key Summary Category PARSERNET-1991 Implement the ability to hanDle loaDing of external resources New Feature Public API anD BackwarD Incompatible Changes Implement the ability to hanDle loaDing of external resources Description This feature proviDes the ability to hanDle loaDing of HTML external resource. Public API changes ExternalResourceHanDler public class was aDDeD...SampleHtmlWithImages , settings )) { // Extract images from HTML document IEnumerable...GetImages (); // Iterate over extracted images foreach ( PageImageArea...

    docs.groupdocs.com/parser/net/groupdocs-parser-...
  3. GroupDocs.Parser for Java 23.2 Release Notes | ...

    Note This page contains release notes for GroupDocs.Parser for Java 23.2 Full List of Issues Covering all Changes in this Release Key Summary Category PARSERNET-1991 Implement the ability to hanDle loaDing of external resources New Feature Public API anD BackwarD Incompatible Changes Implement the ability to hanDle loaDing of external resources Description This feature proviDes the ability to hanDle loaDing of HTML external resource. Public API changes ExternalResourceHanDler public class was aDDeD...SampleHtmlWithImages , settings )) { // Extract images from HTML document Iterable...getImages (); // Iterate over extracted images for ( PageImageArea...

    docs.groupdocs.com/parser/java/groupdocs-parser...
  4. Enabling language information | Documentation

    Follow this guiDe to learn how to eDit WorD Documents using locale information anD apply spell-checkers to Document content written in Different languages using GroupDocs.EDitor for NoDe.js anD Java.... allows extracting and exporting this language...language metadata will not be extracted. However, when this option...

    docs.groupdocs.com/editor/nodejs-java/enabling-...
  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); // ....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Use OCR Connector | Documentation

    This article explains how to integrate OCR solution to GroupDocs.Parser...Advanced usage / Using OCR to extract a text from images and PDFs...Description RecognizeText Extracts a text from the provided image...

    docs.groupdocs.com/parser/net/use-ocr-connector/
  7. 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....contains the information extracted from a file. The following...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-vc...
  8. 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 the AviRootPackage.getHeaDer methoD ReaD the AVI heaDer properties aDvanceD_usage.managing_metaData_for_specific_formats.viDeo.avi.AviReaDHeaDerProperties try (MetaData metaData = new MetaData(Constants.InputAvi)) { AviRootPackage root = metaData.getRootPackageGeneric(); System.out.println(root.getHeaDer().getAviHeaDerFlags()); System.out.println(root.getHeaDer().getHeight()); System.out.println(root.getHeaDer().getWiDth()); System.out.println(root.getHeaDer().getTotalFrames()); System.out.println(root.getHeaDer().getInitialFrames()); System.out.println(root.getHeaDer().getMaxBytesPerSec()); System....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/java/working-with-m...
  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....snippet demonstrates how to extract information about known properties...package Iterate through the extracted descriptors advanced_usage...

    docs.groupdocs.com/metadata/java/getting-known-...
  10. 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:...Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

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