Browse our Products

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.

 

GroupDocs.Redaction for .NET 23.6 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 126.28MB
  • Date Added:
  • 28/6/2023

Description

This ZIP file contains only the GroupDocs.Redaction for .NET 23.6 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Redaction for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

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.

Greater Redaction Power

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*

Supercharged Aspose.PDF Compatibility

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.

 English