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.1 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 115.71MB
  • Date Added:
  • 26/1/2023

Description

This ZIP file contains only the GroupDocs.Redaction for .NET 23.1 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

With GroupDocs.Redaction for .NET 23.1 (DLLs-only), developers can simplify document redaction workflows within their .NET applications and experience easier integration for their .NET projects across multiple OS.

Targeted Page Removal

Develop redaction tools having useful features, like the ability to remove particular pages or frames within word-processing documents (DOCX, ODT, RTF) and multi-frame image formats. This code sample highlights removing three frames from an animated GIF image using the latest C# redaction apps API release.


using (Redactor redactor = new Redactor("Animated.gif"))
{
    // Removes 5 frames starting from 3nd one, requires at least 7 frames
    if (redactor.GetDocumentInfo().PageCount >= 7)
    {
        redactor.Apply(new RemovePageRedaction(PageSeekOrigin.Begin, 2, 5));
        redactor.Save();
    }
}

Source*

Powerful Rasterization Effects

You can effortlessly apply scan-like effects (borders, grayscale, noise) to your redacted PDFs and elevate security and visual consistency within the cross-platform C# and VB.NET applications. The following code example showcases how to use this feature in C# across Windows, Linux, or macOS.


using (Redactor redactor = new Redactor("Sample.docx"))
{
    // Save the document with advanced options (convert pages into images, and save PDF with scan-like pages)
    var so = new SaveOptions();
    so.Rasterization.Enabled = true;
    so.RedactedFileSuffix = "_scan";
    so.Rasterization.AddAdvancedOption(AdvancedRasterizationOptions.Border);
    so.Rasterization.AddAdvancedOption(AdvancedRasterizationOptions.Noise);
    so.Rasterization.AddAdvancedOption(AdvancedRasterizationOptions.Grayscale);
    so.Rasterization.AddAdvancedOption(AdvancedRasterizationOptions.Tilt);
    redactor.Save(so);
}

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Redaction for .NET 23.1 Release Notes.

 English