Hide or remove private information from various file types.
Edit text or images to eliminate sensitive content.
Manage file metadata using our advanced features.
A solution to manage content in PDFs, Office documents, images, and other business files.
Find and redact sensitive text in your documents with ease.
Easily hide image areas in your files without extra effort.
Remove or replace metadata such as the author in Word documents or EXIF data in images.
Search for data to redact using regular expressions or AI integration.
Typical use cases of GroupDocs.Redaction redaction operations.
// Pass the file path to be redacted to a Redactor instance
using (Redactor redactor = new Redactor("source.pdf"))
{
// Provide redaction options
var redaction = new ExactPhraseRedaction("Sensitive data", new ReplacementOptions("[hidden]"));
// Redact and save the result
redactor.Apply(redaction);
var outputFile = redactor.Save();
}
// Pass the file path to be redacted to a Redactor instance
final Redactor redactor = new Redactor("source.pdf");
try
{
// Provide redaction options
ExactPhraseRedaction redaction = new ExactPhraseRedaction("Sensitive data", new ReplacementOptions("[hidden]"));
// Redact and save the result
redactor.apply(redaction);
redactor.save();
}
finally { redactor.close(); }
import groupdocs.redaction as gr
import groupdocs.redaction.options as gro
import groupdocs.redaction.redactions as grr
def run():
# Pass the file path to be redacted to a Redactor instance
with gr.Redactor("source.pdf") as redactor:
# Provide redaction options
repl_opt = grr.ReplacementOptions("[hidden]")
ex_red = grr.ExactPhraseRedaction("Sensitive data", repl_opt)
# Redact and save the result
result = redactor.apply(ex_red)
so = gro.SaveOptions()
so.add_suffix = True
so.rasterize_to_pdf = False
result_path = redactor.save(so)
GroupDocs.Redaction supports redaction operations across all widely used business file formats.
Discover Key Metrics That Highlight Our Library’s Success
GroupDocs.Redaction supports operations with over 30 widely used file formats.
GroupDocs.Redaction for .NET has been downloaded more than 440,000 times from NuGet.
GroupDocs.Redaction has over 12,000 downloads on Maven, offering powerful Java redaction features.
Both global enterprises and individual developers rely on GroupDocs products to build innovative solutions.
GroupDocs libraries are trusted by globally recognized and respected brands.
GroupDocs.Redaction library supports the following operating systems and frameworks:
Explore documentation, code samples, and community support to enhance your experience.
Answers to the most commonly asked questions.
A web-based app that enables you to redact over 30 popular file formats directly in your browser.
Free online tool to redact Word, Excel, PowerPoint, PDF, and 30+ other file types.
Redact Word documents in your browser and extract images, text, or metadata.
Free PDF redaction tool that works on any device or platform with no limitations.