In some cases you might need to redact the pages of a document as images, redacting entire areas of the page instead or in addition to a specific text. With GroupDocs.Redaction you can use the following approach:
open the document and apply all required redactions to the document’s body (text, annotations, etc.);
save it as a rasterized PDF file (containing images of the original document’s pages);
apply ImageAreaRedaction to remove specific areas on the pages within the PDF document.
The following example demonstrates how to create a rasterized PDF from a Microsoft Word document and apply image redactions to its pages:
ByteArrayInputStreaminputStream=null;// Rasterize the document before applying redactions
finalRedactorraterizer=newRedactor("C:\\Temp\\sample.docx");try{// Perform annotation and textual redactions, if needed
ByteArrayOutputStreamstream=newByteArrayOutputStream();RasterizationOptionsoptions=newRasterizationOptions();options.setEnabled(true);raterizer.save(stream,options);inputStream=newByteArrayInputStream(stream.toByteArray());stream.close();}finally{raterizer.close();}if(inputStream!=null){// Re-open the rasterized PDF document to redact its pages as images
finalRedactorredactor=newRedactor(inputStream);try{RedactorChangeLogresult=redactor.apply(newImageAreaRedaction(newjava.awt.Point(1160,2375),newRegionReplacementOptions(java.awt.Color.BLUE,newjava.awt.Dimension(1050,720))));if(result.getStatus()!=RedactionStatus.Failed){finalFileOutputStreamfileStream=newFileOutputStream("C:\\Temp\\sample_docx_Raster.pdf");try{RasterizationOptionsoptions=newRasterizationOptions();options.setEnabled(false);redactor.save(fileStream,options);}finally{fileStream.close();}}}finally{redactor.close();inputStream.close();}}
Please, note that you don’t have to use GroupDocs.Redaction to create a rasterized PDF from an office document. You will be able to use it, if you don’t have any other tool for that.
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 Java 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.