Sort Score
Result 10 results
Languages All
Labels All
Results 1,381 - 1,390 of 30,405 for

redact

(0.07 sec)
  1. Load password-protected file | Documentation

    Learn how to load a password-protected file by using .NET Redaction API...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for .NET...

    docs.groupdocs.com/redaction/net/load-password-...
  2. PDF en gescande documenten redigeren in Java | ...

    Bewerk tekst in PDF en andere documenten met behulp van Java in uw toepassingen. Documenten redigeren om tekst en ook de tekst in de ingesloten afbeeldingen zwart te maken....Redaction biedt de redactie-oplossing...groupdocs</groupId> <artifactId>groupdocs-redaction</artifactId> <version>21.6</version>...

    blog.groupdocs.com/nl/redaction/redact-text-and...
  3. Developer Guide | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/developer-guide/
  4. Կարգավորել տեքստը DOCX-ում Java-ի միջոցով

    Այս թեման ուղեցույց կտա, թե ինչպես խմբագրել տեքստը DOCX-ում Java-ի միջոցով: Առանց լրացուցիչ ծրագրաշարի տեղադրման անհրաժեշտության, դուք կարող եք փոխարինել տեքստը DOCX-ում Java-ի միջոցով:...Redaction Product Family Կարգավորել...միջավայրը՝ օգտագործելու GroupDocs.Redaction for Java ՝ DOCX ֆայլերում...

    kb.groupdocs.com/hy/redaction/java/redact-text-...
  5. Remove Annotations from XLSX using Java

    Swiftly master the process of how to remove annotations from XLSX using Java. You'll also discover a code example demonstrating how to delete annotations in XLSX using Java....Redaction Product Family Remove Annotations...using Java by leveraging a redaction library. This guide will walk...

    kb.groupdocs.com/redaction/java/remove-annotati...
  6. Save overwriting original file | Documentation

    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....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-overwrit...
  7. Supported Platforms | Documentation

    Overview GroupDocs.Redaction for Java does not require any external software or third party tool to be installed. Just follow one of the way as described in Installation section. Supported Operating Systems GroupDocs.Redaction for Java supports any 32-bit or 64-bit operating system that runs the Java runtime including, but not limited: Windows Microsoft Windows 2003 Server ( x64, x86) Microsoft Windows 2008 Server ( x64, x86) Microsoft Windows 2012 Server ( x64, x86) Microsoft Windows 2012 R2 Server ( x64, x86) Microsoft Windows 2016 Server ( x64, x86) Microsoft Windows 2019 Server ( x64, x86) Microsoft Windows Vista ( x64, x86) Microsoft Windows XP ( x64, x86) Microsoft Windows 7 ( x64, x86) Microsoft Windows 8, 8....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/system-requir...
  8. מצא והחלף טקסט ב-PDF ב-Java | החלף או הסתר טקסט...

    מצא באופן פרוגרמטי טקסט, מילים, ביטויים מסוימים במסמכי PDF עם רגישות רישיות ו-RegEx ב-Java. החלף או הסתר את הטקסט כדי לבטל קבצי PDF....טקסט עם תיבה צבעונית Java Redaction API להחלפת טקסט # GroupDocs...groupdocs</groupId> <artifactId>groupdocs-redaction</artifactId> <version>21.12</version>...

    blog.groupdocs.com/he/redaction/find-and-replac...
  9. Save in original format | Documentation

    The following example demonstrates how to save file in its original format with current date as a suffix: final Redactor Redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform Redactions Redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix Redactor.save(saveOptions); } finally { Redactor.close(); }...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-in-origi...
  10. Save to stream | Documentation

    You might need to save a document to any custom file at any location on the local disc or a even a Stream. The following example demonstrates how to save a document to any location. final Redactor Redactor = new Redactor("Sample.docx"); try { // Here we can use document instance to perform Redactions RedactorChangeLog result = Redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-to-stream/