Sort Score
Result 10 results
Languages All
Labels All
Results 2,871 - 2,880 of 3,474 for

extraction

(0.04 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....snippet demonstrates how to extract information about known properties...package Iterate through the extracted descriptors advanced_usage...

    docs.groupdocs.com/metadata/java/getting-known-...
  2. 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....of a loaded GIF image and extract some additional file format...format information. a GIF image Extract the root metadata package Use...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. 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 the EpubRootPackage....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Comment extraire du texte d'un document Word à ...

    Ce didacticiel rapide fournit des informations détaillées sur l'Extraction de texte d'un document Word à l'aide de C # et sur la création du texte lu à partir de l'application Word document C #....avons discuté du processus d’extraction de texte à partir de documents...avons publié un article sur l’extraction d’images de PDF en C#, consultez...

    kb.groupdocs.com/fr/parser/net/how-to-extract-t...
  5. 如何在 C# 中从 XML 中提取文本

    使用流行的文档解析器 API 之一在 C# 中快速从 XML 中提取文本,并了解如何开发使用 C# 从 XML 中获取文本的功能。...中从 XML 中提取文本 这篇简短的文章详细解释了 extract Text from XML in C# 的每个步骤,...上面的代码片段演示了如何使用 C#* 应用程序开发 *extract text from XML。示例代码显示该功能是通过几行代码创建的,这些代码由简单的...

    kb.groupdocs.com/zh/parser/net/how-to-extract-t...
  6. 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....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Java を使用して DOC からテキストを抽出する

    この記事では、Java を使用して DOC からテキストを抽出する方法について説明します。また、追加のソフトウェアを使用せずに Java で DOC からテキストを抽出するコード例も示します。... Extracting text from DOC files using...documents, or automating tasks, extracting text is a key step in many...

    kb.groupdocs.com/ja/parser/java/extract-text-fr...
  8. Export Indexed Documents to HTML using C#

    Learn how to export indexed documents to HTML using C# with easy-to-follow steps. Implement C# export indexed documents to HTML for better document management....indexed documents, you can extract the content of a specific document...are indexed, developers can extract their content and convert indexed...

    kb.groupdocs.com/search/net/export-indexed-docu...
  9. Cómo extraer texto de PDF en Java

    Este tutorial contiene instrucciones paso a paso para extraer texto de PDF en Java y una guía sobre cómo crear la funcionalidad para extraer texto de PDF usando Java.... La función Java extract PDF text se puede lograr rápidamente...cómo desarrollar la función Extract PDF text Java . Hemos completado...

    kb.groupdocs.com/es/parser/java/how-to-extract-...
  10. Get file info | Documentation

    This article explains how to detect document file type, size and calculate pages count with GroupDocs.Comparison....print ( " \n Document info extracted successfully." ) The result...print ( " \n Document info extracted successfully." ) Was this...

    docs.groupdocs.com/comparison/python-net/get-fi...