Sort Score
Result 10 results
Languages All
Labels All
Results 1,921 - 1,930 of 3,656 for

document classification

(0.04 sec)
  1. Extract text from Microsoft OneNote sections | ...

    To extract a text from Microsoft OneNote Sections getText and getText(int) methods are used. These methods allow to extract a text from the entire Document or a text from the selected page. Raw mode is not supported for Microsoft OneNote. Here are the steps to extract a text from Microsoft OneNote Section: Instantiate Parser object for the initial section; Call getText method and obtain TextReader object; Read a text from reader....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/extract-text-fro...
  2. Save in rasterized PDF | Documentation

    The following example demonstrates how to save the Document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  3. Features Overview | Documentation

    A Java metadata API can be effectively used in removing, updating and reading metadata in a variety of formats. It is very effective in removing metadata from photos. Supporting iptc metadata, exif metadata and xmp metadata....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/features-overv...
  4. Convert note-taking formats | Documentation

    In this article, you will learn how to convert note-taking formats to other formats with GroupDocs.Conversion for Java....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/java/convert/note/
  5. Load from local disk | Documentation

    This article explains how to load from local disk while using GroupDocs. Watermarks API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/net/load-from-loca...
  6. Locating signature on page with different measu...

     This article explains using measure units to locate signature and its size on Document page with GroupDocs.Signature API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/locating-sign...
  7. Rotate pages | Documentation

    This article explains how to rotate PDF, HTML or Image pages when rendering Documents with GroupDocs.Viewer within your Java applications....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/flip-or-rotate-p...
  8. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your Document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // Extract, edit or remove metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for ....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  9. Load custom fonts | Documentation

    This article explains how to load custom fonts PDF, Word, Excel, PowerPoint Documents when using GroupDocs.Comparison for .NET....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/load-custom-f...
  10. Save overwriting original file | Documentation

    The following example demonstrates how to save the redacted Document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the Document in original format overwriting original file redactor.save(options); } } finally { redactor....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...