Some test text!

Search
Hamburger Icon

Python / Guides / Redact

Redact a PDF document in Python

To redact content from a PDF document.

vec = VectorRedaction()
vec.append(Redaction(1, Rect(100, 100, 550, 600), False, "Top Secret"))
vec.append(Redaction(2, Rect(30, 30, 450, 450), True, "Negative Redaction"))
vec.append(Redaction(2, Rect(0, 0, 100, 100), False, "Positive"))
vec.append(Redaction(2, Rect(100, 100, 200, 200), False, "Positive"))
vec.append(Redaction(2, Rect(300, 300, 400, 400), False, ""))
vec.append(Redaction(2, Rect(500, 500, 600, 600), False, ""))
vec.append(Redaction(3, Rect(0, 0, 700, 20), False, ""))

app = Appearance() 
app.RedactionOverlay = True
app.Border = False
app.ShowRedactedContentRegions = True

doc = PDFDoc(filename)
Redactor.Redact(doc, vec, app, False, True)

PDF redaction
Full code sample which shows how to use pdftron.PDF.Redactor to remove potentially sensitive content within PDF documents.

About redactor

Apryse Redactor makes sure that if a portion of an image, text, or vector graphics is contained in a redaction region, that portion of the image or path data is destroyed and is not hidden with clipping or image masks. Apryse SDK API can also be used to review and remove metadata and other content that can exist in a PDF document, including XML Forms Architecture (XFA) content and Extensible Metadata Platform (XMP) content.

The redaction process in Apryse SDK consists of two steps:

1. Content identification
A user applies redact annotations that specify the pieces or regions of content that should be removed. The content for redaction can be identified either interactively (e.g. using ‘pdftron.PDF.PDFViewCtrl’ as shown in PDFView sample) or programmatically (e.g. using ‘pdftron.PDF.TextSearch’ or ‘pdftron.PDF.TextExtractor’). Up until the next step is performed, the user can see, move and redefine these annotations.

2. Content removal
Using ‘pdftron.PDF.Redactor.Redact()’ the user instructs Apryse SDK to apply the redact regions, after which the content in the area specified by the redact annotations is removed. The redaction function includes number of options to control the style of the redaction overlay (including color, text, font, border, transparency, etc.).

Get the answers you need: Chat with us