Sort Score
Result 10 results
Languages All
Labels All
Results 3,321 - 3,330 of 8,272 for

document annotation

(0.07 sec)
  1. 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...
  2. Convert DOC to JPG in C#

    Learn how to Convert DOC to JPG in C# and Export Word Document as JPEG using C# with GroupDocs.Conversion for .NET, providing step-by-step code and best practices....Annotation Product Family GroupDocs...requirement when preparing documents for web preview or thumbnail...

    kb.groupdocs.com/conversion/net/convert-doc-to-...
  3. Merge DOC files using C#

    Develop your skills in how to merge DOC files using C#. We will supply you with a sample code to combine DOC files in C# without the need for any extra softwares....Annotation Product Family GroupDocs...compiling reports, consolidating documents, or creating comprehensive...

    kb.groupdocs.com/merger/net/merge-doc-files-usi...
  4. How to Convert HTML to Markdown using Java

    This article walks you through the complete process to convert HTML to Markdown using Java and demonstrates how to create the Java HTML to MD converter capability....Annotation Product Family GroupDocs...for configuring the required document conversion library from the...

    kb.groupdocs.com/conversion/java/how-to-convert...
  5. 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/
  6. Search for standard entries in the QR-Code sign...

    This article explains how to search for VCard, MeCard, Email, Address, EPC, SEPA, Event data in QR-code electronic signatures from previously signed Documents with GroupDocs.Signature API....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/net/search-for-sta...
  7. How to Extract Images from PowerPoint in C#

    This article provides stepwise instructions to extract images from PowerPoint in C# and a sample working code on how to get images from PowerPoint using C#....Annotation Product Family GroupDocs...C# using one of the popular document extraction packages with a...

    kb.groupdocs.com/parser/net/how-to-extract-imag...
  8. How to Convert EML to MSG in C#

    Let's get familiar with the workflow to convert EML to MSG in C# and learn how to use this guide to create the C# convert EML to MSG application....Annotation Product Family GroupDocs...C# using one of the popular document converter APIs. Further, this...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  9. GroupDocs.Merger for .NET | GroupDocs

    Use GroupDocs.Merger for .NET to merge several Documents into one, split single Document to multiple and organize Documents in different ways....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

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