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.
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.
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*
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); }
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.