You can use PageAreaRedaction to redact an area of a specific page range from all sensitive data in text, images and annnotations..
The following example demonstrates how to apply PageAreaRedaction to the right half of the last page in a PDF document.
C#
using(Redactorredactor=newRedactor("Sample.pdf")){Regexrx=newRegex("urna");ReplacementOptionsoptionsText=newReplacementOptions("[redarea]");optionsText.Filters=newRedactionFilter[]{newPageRangeFilter(PageSeekOrigin.End,0,1),// last pagenewPageAreaFilter(newSystem.Drawing.Point(300,0),newSystem.Drawing.Size(300,840))// right half of the page 300x840};RegionReplacementOptionsoptionsImg=newRegionReplacementOptions(System.Drawing.Color.Chocolate,newSystem.Drawing.Size(100,100));RedactorChangeLogresult=redactor.Apply(newPageAreaRedaction(rx,optionsText,optionsImg));if(result.Status!=RedactionStatus.Failed){redactor.Save();};}
More resources
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to perform redactions for various document formats like PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Redaction App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.