Sort Score
Result 10 results
Languages All
Labels All
Results 511 - 520 of 913 for

full text search

(0.06 sec)
  1. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().geTextension()); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class....Search Product Solution GroupDocs...uses the GroupDocs.Metadata search engine to retrieve all properties...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Load document from local disk | Documentation

    GroupDocs.Parser provides the functionality to extract data from documents on the local disk. The following example shows how to load the document from the local disk: // Set the filePath String filePath = Constants.SamplePdf; // Create an instance of Parser class with the filePath try (Parser parser = new Parser(filePath)) { // Extract a Text into the reader try (TextReader reader = parser.getText()) { // Print a Text from the document // If Text extraction isn't supported, a reader is null System....Search Product Solution GroupDocs...( filePath )) { // Extract a text into the reader try ( TextReader...

    docs.groupdocs.com/parser/java/load-document-fr...
  3. Annotation redactions | Documentation

    This article shows the implementation of annotation redaction for documents of different formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and others....Search Product Solution GroupDocs...PPTX, XLS, XLSX and others. See full list at article. GroupDocs.Redactions...

    docs.groupdocs.com/redaction/python-net/annotat...
  4. HTML | Documentation

    This article explains that how to extract HTML formatted Text from document page....Search Product Solution GroupDocs...Working with text / Working with formatted text / HTML HTML Leave...

    docs.groupdocs.com/parser/net/html/
  5. Extract images from documents | Documentation

    This article shows how to extract images from PDF, Emails, Ebooks, Microsoft Office: Word (DOC, DOCX), PowerPoint (PPT, PPTX), Excel (XLS, XLSX), LibreOffice formats and many others...Search Product Solution GroupDocs...formats and many others (see full list at article). GroupDocs...

    docs.groupdocs.com/parser/net/extract-images-fr...
  6. Load document from stream | Documentation

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a Text into the reader try (TextReader reader = parser....Search Product Solution GroupDocs...Parser ( stream )) { // Extract a text into the reader try ( TextReader...

    docs.groupdocs.com/parser/java/load-document-fr...
  7. Archive

    archives...min January 2 Reverse Image Search January 31, 2025 · Andrey Golubkov...Khan · 3 min Online Synonym Search in Documents December 16, 2023...

    blog.groupdocs.com/archives/
  8. Load document from local disk | Documentation

    Learn how to extract data from documents on the local disk...Search Product Solution GroupDocs...( filePath )) { // Extract a text into the reader using ( TextReader...

    docs.groupdocs.com/parser/net/load-document-fro...
  9. Load document from stream | Documentation

    Learn how to Load document from stream....Search Product Solution GroupDocs...Parser ( stream )) { // Extract a text into the reader using ( TextReader...

    docs.groupdocs.com/parser/net/load-document-fro...
  10. Loading specific file formats | Documentation

    Learn how to Load specific file formats....Search Product Solution GroupDocs...FileFormat . Markup ))) { // Check if text extraction is supported if (...

    docs.groupdocs.com/parser/net/loading-specific-...