In some cases, you might need to pre-rasterize the document before opening it and applying redactions.
For instance, you might need to use an ImageAreaRedaction for a whole page of a document with search-able text and images. In order to do that, you will need to pass the Boolean flag to the LoadOptions class constructor.
The following example demonstrates how to pre-rasterize a Microsoft Word document:
Python
importgroupdocs.redactionasgrimportgroupdocs.redaction.redactionsasgrrimportgroupdocs.pydrawingasgrddefrun():# Specify the redaction optionsrepl_opt=grr.ReplacementOptions("[personal]")ex_red=grr.ExactPhraseRedaction("John Doe",repl_opt)# Load the document to be redactedwithgr.Redactor("source.docx")asredactor:# Apply the redactionresult=redactor.apply(ex_red)if(result.status!=gr.RedactionStatus.FAILED):# By default, the redacted document is saved in PDF formatresult_path=redactor.save()else:print(f"Redaction failed!")
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.