Sort Score
Result 10 results
Languages All
Labels All
Results 3,301 - 3,310 of 8,138 for

document annotation

(0.05 sec)
  1. GroupDocs.Redaction Overview | GroupDocs

    Learn what redaction is and how it works. Redaction refers to editing a Document to remove or hide confidential or sensitive information....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/python-net/groupdo...
  2. 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...
  3. Convert EML to XPS using C#

    Effectively convert EML to XPS using C# without the need for additional tools. Elevate Document processing with this guide on how to export EML to XPS using C#....Annotation Product Family GroupDocs...XPS using C# In the realm of document management and data preservation...

    kb.groupdocs.com/conversion/net/convert-eml-to-...
  4. Get default load options for a source format | ...

    In this article, you will learn how to get default load options for a source format with GroupDocs.Conversion for .NET API....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/get-default-l...
  5. Compare documents | GroupDocs

    This article demonstrates how to compare Word, Excel, PowerPoint, Outlook, OneNote, PDF, Image, HTML, AutoCAD, Visio, OpenDocument, OneNote Documents using GroupDocs.Comparison for .NET....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/compare-docum...
  6. 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/
  7. Load File From Stream | GroupDocs

    This article demonstrates how to convert a file from a stream using GroupDocs.Conversion for Python via .NET API....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/python-net/develo...
  8. Convert PDF to Word using Python

    Learn how to convert PDF to Word using Python with clear steps. Effortlessly export PDF to Word using Python without installing any extra software on your system....Annotation Product Family GroupDocs...Word files from your PDF documents. This is especially useful...

    kb.groupdocs.com/conversion/python/convert-pdf-...
  9. Saving documents | GroupDocs

    This section explains how to save Document with different formats and source with GroupDocs.Signature API....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/net/saving/
  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...