Sort Score
Result 10 results
Languages All
Labels All
Results 91 - 100 of 5,527 for

groupdocs.redaction

(0.06 sec)
  1. Migration Notes | Documentation

    Why To Migrate? Here are the key reasons to use the new updated API provided by Groupdocs.redaction for .NET since version 19.9: Redactor class introduced as a single entry point to manage the document redaction process (instead of Documentclass from previous versions). Methods RedactWith() of the Document class were replaced with similar Apply() methods in Redactor class. Method Document.Save(Stream, SaveOptions) was replaced with Redactor.Save(Stream, RasterizationOptions). Constructor LoadOptions(DocumentFormatConfiguration) was removed....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/net/migration-notes/
  2. Create custom format handler | Documentation

    This article shows how to implement one or several interfaces for the document's features and required redaction....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/create-custom...
  3. Get supported file formats | Documentation

    This article shows that how to get the list of all supported file formats of Groupdocs.redaction by using C#....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/net/get-supported-...
  4. Pre-rasterize | Documentation

    This article shows how to pre-rasterize a document using the redaction API....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/net/pre-rasterize/
  5. Save in rasterized PDF | Documentation

    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(); }...Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/save-in-raste...
  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....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

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

    This article explains that how C# redaction API allows you to easily redact data of sensitive or private nature from your documents. You can apply text redaction using exact phrase or regular expression for documents of different formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and others....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/net/text-redactions/
  8. Use advanced logging | Documentation

    You can implement ILogger interface from com.Groupdocs.redaction.options package. This interface requires to implement three methods: import com.Groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/use-advanced-...
  9. Load password-protected file | Documentation

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

    docs.groupdocs.com/redaction/net/load-password-...
  10. Pre-rasterize | Documentation

    This article shows how to pre-rasterize a document using the redaction API....Merger Product Solution GroupDocs.Redaction Product Solution GroupDocs...GroupDocs Documentation / GroupDocs.Redaction Product Family / GroupDocs...

    docs.groupdocs.com/redaction/java/pre-rasterize/