BASALT · JOURNAL
PDF redaction software for Mac: what to look for before you trust one
Choosing PDF redaction software for Mac is a security decision wearing the costume of a shopping decision. Every candidate has a redaction button, and the button looks the same in all of them. What differs is what happens to the bytes underneath the black rectangle, and whether anything in the program ever checks.
This is a set of criteria you can apply to any product, including ones not named here, plus a test you can run in about ten minutes on a document you already have.
Redaction is a file edit, not a drawing operation
A PDF page is a content stream: a short program of operators that a renderer executes to paint marks. Text is drawn by the text-showing operators Tj, TJ, ', and ", each taking strings of character codes that a font's encoding maps to glyphs. The file is the program, not the picture.
Removing information means editing that program so the sensitive operands are gone. If a name sits inside a TJ array, those codes have to come out and the surviving text has to be re-emitted with corrected positioning so the page still looks right. Anything less leaves the codes where any parser reads them.
Drawing a filled rectangle does not edit the program. It appends a fill operator that paints over marks already made, while the text operators remain executable, selectable, and extractable by copy and paste. That is the difference that matters, and the one most software will not state plainly. How to redact a PDF on Mac covers the mechanics.
Seven criteria for PDF redaction software for Mac
Use these to interrogate any candidate. They are ordered by how badly it goes wrong if the answer is no.
One: does it excise operands from the content stream. Ask directly. If the documentation only says the region is "covered" or "blacked out," treat that as a no until you have tested it.
Two: does it handle raster images. Scanned pages are pixels, not text, so a mark over a photograph is meaningless unless the underlying pixels are overwritten and the image re-encoded. Cropping an image's display rectangle leaves the pixels outside it in the file.
Three: does it sweep the parallel copies. Text lives in more places than the page. Document information fields and the XMP packet carry author names and original filenames, annotation /Contents values often quote the passage they annotate, and form field values live in the AcroForm dictionary independent of the visible page. Attachments, switched-off optional content groups, and stale thumbnails persist too. Hidden data in PDFs enumerates each surface.
Four: does it write one generation. PDF allows incremental saves that append a new cross-reference section and leave every prior object version intact earlier in the file. A tool that redacts correctly and then saves incrementally produces a file containing both versions. The output must be a full rewrite.
Five: does it verify before writing. Nearly every tool reports success when its code path completed without an exception, which is the writer grading its own work. The stronger design re-opens the finished bytes with an independent parser, searches for the content that was supposed to be gone, and refuses to save if it finds anything.
Six: where does the file go. A browser-based service uploads the document before it redacts anything, so for privileged, personal, or health information the upload is itself the disclosure event. The risk in cloud PDF tools covers what that means.
Seven: is the original preserved. Redaction is destructive by design. Any tool that edits in place has removed your ability to re-review the source. Output should be a new file every time.
The options, honestly
Apple Preview is on every Mac, costs nothing, and is genuinely good at viewing, page reordering, and merging. It is not redaction software. Its markup tools paint, and it saves PDFs as incremental updates. Use it freely for everything except removing information.
Adobe Acrobat Pro is the reference implementation most legal and compliance teams have used, and its dedicated redaction tool performs real content removal. The usual objections are the subscription model, the install size, and the fact that removing page text and sanitizing hidden data are separate commands you have to run in the right order. See an Acrobat alternative for Mac.
Browser services such as Smallpdf and iLovePDF are convenient and often free for light use. Their model requires sending your file to their servers. That is fine for a menu or a conference agenda and unacceptable for a document under a protective order.
Native Mac editors in the PDF Expert and PDFpen category are well-built applications for annotating, filling, and organizing, with business models varying between subscriptions and paid major upgrades. Evaluate their redaction specifically rather than assuming it follows from the rest of the app.
Command line tools such as qpdf, mutool, and Ghostscript are free, scriptable, and excellent for checking someone else's work. They will not guide a redaction or verify intent.
A ten minute acceptance test
Take a document you can share, then do this with any candidate.
Redact a word in the middle of a paragraph and save. Open the output, select the paragraph, copy it, and paste into a plain text editor: the word must be absent and the surrounding words must keep their spacing. Then run a command line extractor over the same file, and check the metadata, annotations, form fields, and attachments separately. How to verify a PDF redaction describes the full procedure with commands.
Frequently asked questions
What is the best PDF redaction software for Mac?
The best choice is whichever tool excises text from the page content stream, destroys pixels under marks on images, strips the copies held in metadata, annotations, form fields, and attachments, and writes one clean generation. Feature count is not the criterion and neither is price. Test any candidate by redacting a word mid-paragraph and pasting that paragraph out of the saved file into a text editor.
Can I redact a PDF for free on a Mac?
You can, using command line tools such as qpdf and mutool, but there is no free graphical tool on macOS that performs verified redaction end to end. Preview's markup tools draw rather than delete. Free browser services perform real removal in some cases, but they require uploading the document, which is a disclosure you may not be permitted to make.
Is Preview safe for redacting PDFs?
No. Preview paints a rectangle onto the page without removing the text-showing operators beneath it, so the characters remain selectable, copyable, and extractable by any parser. It also saves PDFs as incremental updates, appending changes while leaving prior versions of objects in the file. Both behaviors are fine for annotation and unsafe for removing information.
How do I know a redaction actually worked?
Open the saved file with a parser that had nothing to do with writing it, extract all text, and search that output for the terms you removed. Then read the metadata, every annotation value, every form field, and any attachments, because each stores text independently of the page. If a term appears anywhere, the redaction failed and the file should not be sent.
Does redaction remove information from scanned documents?
Only if the tool destroys and re-encodes the image pixels. A scanned page is a raster image, so there are no text operators to delete, and a mark drawn over it is just another painted object. If the scan has been through OCR, there is also an invisible text layer that must be edited separately, otherwise the words remain searchable under the black box.
Are online PDF redaction tools secure?
The redaction quality varies, but the more consequential issue is that using one requires transferring the document to a third party. For privileged material, personal data, or health information, that transfer is itself a reportable event, and it happens before any redaction is applied. A local application avoids the question rather than answering it.
Can redacted text be recovered from a PDF?
Yes, if the tool only drew over it, and recovery requires no special skill: copy and paste is usually enough. Text can also survive in metadata, annotation contents, form field values, attachments, and in prior object versions left by an incremental save. The only way to be sure is to check the written file.
Do I need a subscription for PDF redaction on Mac?
No. Redaction is a file transformation, not a hosted service, and several native macOS applications sell perpetual licenses. Subscriptions buy continuous feature development and support, which matters more if you use the full breadth of a large suite. If redaction is the actual job, evaluate correctness and verification first and the billing model second.
Doing it in Basalt
Basalt is a native macOS app built against the criteria above: text excised from the content stream glyph by glyph, image pixels destroyed and re-encoded, metadata, XMP, attachments, and hidden layers stripped, written as one generation. Before anything reaches disk, a verifier re-opens the written bytes with an independent parser and proves the content is gone; if it cannot prove it, nothing is written. The engine that opens your documents runs in a separate process with no network entitlement, enforced by macOS at the code-signature level and confirmable with codesign -d --entitlements. It is not a page-layout editor, it does not do certificate-based digital signatures, and it is Mac only. $29 once for up to three Macs, free for 24 hours, at basaltformac.com.
Redaction that proves itself
Basalt destroys the content you mark, then re-opens the file it wrote and proves the content is gone before it saves anything. Your documents never leave your Mac.