Sort Score
Result 10 results
Languages All
Labels All
Results 1,191 - 1,200 of 27,528 for

groupdocs.redaction

(1.03 sec)
  1. text redaction

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....release announcement of GroupDocs.Redaction for .NET 19.5. This release...developers who are using GroupDocs.Redaction with our Metered Licence...

    blog.groupdocs.com/tag/text-redaction/
  2. index.xml

    1.0 utf-8 yes 2.0 http://www.w3.org/2005/Atom Groupdocs.redaction | Hide Sensitive Doc Info via Java API on Releases - groupdocs.comhttps://releases.groupdocs.com/redaction/java/Recent content in G......org/2005/Atom GroupDocs.Redaction | Hide Sensitive Doc...com/redaction/java/Recent content in GroupDocs.Redaction | Hide Sensitive Doc...

    releases.groupdocs.com/redaction/java/index.xml
  3. Email message redaction is not supported in .NE...

    I noticed that redacting a email message is not supported, is that any plans to support it?...NET GroupDocs.Redaction Product Family dotnet...will be done through GroupDocs.Redaction API. You can use streams...

    forum.groupdocs.com/t/email-message-redaction-i...
  4. 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....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/save-to-stream/
  5. Image redactions | Documentation

    This article shows that how to redact data of sensitive nature from images of various formats like JPG, PNG, TIFF and others....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/image-redacti...
  6. Saving documents | Documentation

    Saving a document, Groupdocs.redaction puts it in the same folder as the original file, renaming or rewriting original. If you need to save the document to any custom location, you’ll have to open a Stream to this location. As a save option by default, Groupdocs.redaction converts all pages (slides, worksheets) in a document into images and puts them in a single PDF file, so you can share the redacted document without any additional conversions....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/saving-docume...
  7. Saving documents | Documentation

    The articles explain that how to save documents in different ways after making redactions....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/net/saving-documents/
  8. 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....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/save-overwrit...
  9. Load from local disc | Documentation

    This article shows how the redaction API is used to load file from disk....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/net/load-from-loca...
  10. Use PageAreaRedaction | Documentation

    This article explains that how to use PageAreaRedaction....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/use-page-area...