Sort Score
Result 10 results
Languages All
Labels All
Results 3,421 - 3,430 of 8,304 for

document annotation

(0.47 sec)
  1. Save signed images with various output types | ...

    This article explains how to save images with various image format types....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/save-signed-i...
  2. Redact Text in PDF using Java

    In this tutorial, you will learn how to redact text in PDF using Java. Also, you will be provided with a straightforward code to replace text in PDF using Java....Annotation Product Family GroupDocs...for developers working on document management systems, legal...

    kb.groupdocs.com/redaction/java/redact-text-in-...
  3. GroupDocs.Viewer for Python via .NET | GroupDocs

    Render Documents as HTML, PDF, JPEG, or PNG with GroupDocs.Viewer for Python. No third-party software needed!...Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/python-net/
  4. 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...
  5. Extract metadata from EPUB eBook | GroupDocs

    This article explains that how to extract metadata from EPUB e-books getMetadata method is used....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/extract-metadata...
  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. How to Convert XML to CSV in Java

    Let's quickly take a look at how to convert XML to CSV in Java and how to write Java code to convert XML to CSV for performing Document conversion....Annotation Product Family GroupDocs...brief how-to tutorial for document conversion that includes a...

    kb.groupdocs.com/conversion/java/how-to-convert...
  8. Remove metadata properties | GroupDocs

    The easiest way to remove metadata properties from a file is to use corresponding tags that allow you to locate the desired properties across all metadata packages....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/remove-...
  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 Convert Excel to CSV in C#

    Convert Documents quickly and learn how to convert Excel to CSV in C#. Examine the sample code to convert Excel to CSV in C# and modify it to fit your needs....Annotation Product Family GroupDocs...functionality and perform simple document transformation to CSV format...

    kb.groupdocs.com/conversion/net/how-to-convert-...