- Solutions
- Products
- Download
- Pricing
- Support
-
-
-
Reach our technical support team on our helpdesk
- Submit Ticket
-
- Contact Sales
Integrate PDF Redaction features in your workflows to safely share or archive your files.
Redaction is the process of permanently removing visible text and other graphic elements from a PDF document. What has been removed is destroyed and not simply hidden as redaction marks are not annotations.
Redacting a document with GdPicture.NET is simple and straightforward:
1. Add one or several redaction marks
2. Apply all redactions
3. Clear redactions if necessary
Redaction marks don’t have to be all black; sometimes, you still need to know what type of information has been erased.
If you need to remove data of different nature, you can modify the appearance of the marks by choosing a specific color for each type of content. You can also add a title and a comment to ease collaborative work and add clarity to your document.
Companies need to protect sensitive data within their organization of course, but they also have the duty to protect personal data from their customers and employees.
Laws and regulations like GDPR in Europe and the California Privacy Act in the US are protecting personal and sensitive data and have made redaction features a requirement for all companies.
Remove sensitive data from a PDF with our HTML5 Viewer and Document Management Kit DocuVieware.
Adds redaction region on the selected page of the loaded PDF document.
using (GdPicturePDF oGdPicturePDF = new GdPicturePDF()) { oGdPicturePDF.LoadFromFile("input.pdf"); oGdPicturePDF.SetOrigin(PdfOrigin.PdfOriginTopLeft); oGdPicturePDF.SelectPage(1); oGdPicturePDF.AddRedactionRegion(120, 300, 140, 20); oGdPicturePDF.SelectPage(2); oGdPicturePDF.AddRedactionRegion(100, 280, 70, 15); oGdPicturePDF.AddRedactionRegion(100, 310, 70, 15); oGdPicturePDF.ApplyRedaction(); oGdPicturePDF.SaveToFile("output.pdf"); }
Download and install GdPicture.NET package from here.
You will find a compiled demo applications in
[Install directory]\Samples\Bin\
You will find an example of a full application (the source code of PDF Reducer) in
[Install directory]\Samples\DotNet\GdPicture.NET 14\
You will find other code snippets within the online reference guide found here https://guides.gdpicture.com