Sort Score
Result 10 results
Languages All
Labels All
Results 3,581 - 3,590 of 8,382 for

document annotation

(0.26 sec)
  1. Basic Usage | GroupDocs

    Quick Start section for GroupDocs.Metadata API Manage metadata in your Documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when Documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/basic-usage/
  2. Render RTF as PNG using Python

    Let's quickly learn how to render RTF as PNG using Python. You will get code and steps to create PNG images from RTF in Python for custom dimensions for output....Annotation Product Family GroupDocs...Working with rich text ( RTF ) documents often requires converting...

    kb.groupdocs.com/viewer/python/render-rtf-as-pn...
  3. Load from local disk | GroupDocs

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

    docs.groupdocs.com/watermark/net/load-from-loca...
  4. Convert ODT to HTML using Node.js

    Learn how to convert ODT to HTML using Node.js with a simple API. Follow this guide to export ODT to HTML in Node.js quickly and integrate it into your projects....Annotation Product Family GroupDocs...HTML using Node.js Handling document conversion effectively is...

    kb.groupdocs.com/conversion/nodejs/convert-odt-...
  5. 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...
  6. Find metadata properties | GroupDocs

    Using the GroupDocs.Metadata for Python via .NET you can easily search metadata and extract desired metadata properties from PDF, DOCX, PPTX, XLSX, images, audio, video and many other files of different types in your Java solution....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/python-net/find-met...
  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. Deleting Text signatures - advanced | GroupDocs

    This article shows how to delete Text electronic signatures different ways with GroupDocs.Signature API....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/deleting-text...
  9. How to Compare PDF Files using C#

    This short tutorial explains the process in detail to compare PDF files using C# and guides you to develop the functionality to compare two PDF files using C#....Annotation Product Family GroupDocs...information to configure the document comparison library and sample...

    kb.groupdocs.com/comparison/net/how-to-compare-...
  10. 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...