Sort Score
Result 10 results
Languages All
Labels All
Results 3,661 - 3,670 of 8,573 for

document annotation

(1.53 sec)
  1. Use Cases | GroupDocs

    Explore real-world use cases for GroupDocs.Metadata for .NET, such as extracting metadata from PDFs and detecting PDF/A conformance....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/use-cases/
  2. Build your first search solution | GroupDocs

    First of all you need to create an index. An index can be created in memory or on disk. An index created in memory cannot be saved after exiting your program. In contrast, an index created on disk may be loaded in the future to continue working....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/build-your-first-...
  3. Save in rasterized PDF | GroupDocs

    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(); }...Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  4. Scan Barcode from ODT using C#

    This guide explains how to scan barcode from ODT using C#, with a code example to help you efficiently extract barcode from ODT in C#, ensuring a seamless process....Annotation Product Family GroupDocs...Barcodes are widely used in documents to store essential information...

    kb.groupdocs.com/parser/net/scan-barcode-from-o...
  5. Edit TXT | GroupDocs

    This guide demonstrates how to edit plain text files with encoding, lists recognition, pagination and other powerful features of GroupDocs.Editor for Java...Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...

    docs.groupdocs.com/editor/java/edit-txt/
  6. Convert XLSX to MHTML using Python

    Convert XLSX to MHTML using Python to generate web-friendly spreadsheets. Learn how to export XLSX to MHTML in Python with styling and layout preservation....Annotation Product Family GroupDocs...backend services that handle document transformation tasks automatically...

    kb.groupdocs.com/conversion/python/convert-xlsx...
  7. Reorder pages | GroupDocs

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/reorder-pages/
  8. Add Text Watermark to XLSX Using Python

    Learn how to add text watermark to XLSX using Python. This tutorial shows how to embed watermark text into XLSX spreadsheets with custom font, color, and alignment....Annotation Product Family GroupDocs...worksheets helps reinforce document integrity and ownership. If...

    kb.groupdocs.com/watermark/python/add-text-wate...
  9. Save overwriting original file | GroupDocs

    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....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  10. How to Extract Text from HTML in C#

    This tutorial focuses on the procedure to extract Text from HTML in C# and how to follow this guide for implementing the C# extract Text from HTML functionality....Annotation Product Family GroupDocs...requires you to provide the HTML document for extracting text by consuming...

    kb.groupdocs.com/parser/net/how-to-extract-text...