Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Empower your C# and VB.NET applications with the advanced redaction capabilities of GroupDocs.Redaction for .NET 23.6 (DLLs only). This release includes the ability to define page ranges and specific areas for redaction by offering finer control over sensitive information removal.
The latest .NET document redaction API release lets you select the page range and specific areas within a page for redaction. It allows you to utilize a targeted approach to information security. Check out the C# code snippet given below to learn how to apply selective redaction in PDFs.
using (Redactor redactor = new Redactor("Sample.pdf")) { // Get the actual size information for the last page: IDocumentInfo info = redactor.GetDocumentInfo(); PageInfo lastPage = info.Pages[info.PageCount - 1]; ReplacementOptions options = new Redactions.ReplacementOptions("[secret]"); options.Filters = new RedactionFilter[] { new PageRangeFilter(PageSeekOrigin.End, 0, 1), new PageAreaFilter(new System.Drawing.Point(0, lastPage.Height/2), new System.Drawing.Size(lastPage.Width, lastPage.Height / 2)) }; RedactorChangeLog result = redactor.Apply(new ExactPhraseRedaction("dolor", options)); if (result.Status != RedactionStatus.Failed) { redactor.Save(); }; }
Source*
We have enhanced the compatibility with Aspose.PDF versions 22.8 and above in GroupDocs.Redaction for .NET 23.6 to ascertain effortless integration in your projects.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Redaction for .NET 23.6 Release Notes.