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.
Streamline your .NET development workflow with the latest GroupDocs.Redaction for .NET 23.1 (MSI). This update equips developers with sophisticated redaction capabilities and enhanced document handling.
Build powerful redaction tools boasting useful features, such as the ability to remove specific pages or frames within Word processing documents (DOCX, ODT, RTF) and multi-frame image formats. This code sample demonstrates how to remove 3 frames from an animated GIF image file using this release of the C# redaction apps API.
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*
Apply scan-like effects (borders, grayscale, noise) to redacted PDF documents and boost security and visual consistency within your C# and VB.NET applications. The following code example showcases how to use this feature in C#.
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.