Blackline Guides Open the tool

How to remove PDF and image metadata before you send a file

Redacting the page and forgetting the metadata is the second most common way a document gives away what it was meant to hide. The page is what you looked at. The metadata is what you never opened.

What a PDF is carrying

What a photo or screenshot is carrying

Read it first, so you know what you are removing

exiftool file.pdf          # or file.jpg — prints every tag
pdfinfo file.pdf           # PDF info dictionary only
strings file.pdf | head -50

If you have no tools installed: on Windows, right-click the file, Properties, Details tab, and use Remove Properties and Personal Information. On macOS, Get Info shows only a fraction of it, so do not trust a clean-looking Get Info panel.

Removing it

RouteCommand or stepNote
exiftoolexiftool -all= file.jpgThorough for images. Keeps a backup as file.jpg_original unless you add -overwrite_original.
exiftool, PDFsexiftool -all= -overwrite_original file.pdfPDF is append-only by design, so exiftool marks the old metadata as deleted rather than truly removing it. Use qpdf --linearize afterwards to write a clean file.
qpdfqpdf --linearize in.pdf out.pdfRewrites the file structure, dropping unreferenced objects and earlier revisions.
Re-render the pagesRasterise and rebuildThe most complete option: nothing from the original file structure survives into the new one.
Windows ExplorerProperties → Details → Remove PropertiesHandles the common fields. Does not reach XMP or embedded image EXIF.

The no-install route

Blackline rebuilds every page from rendered pixels and writes a fresh document, so the output carries no document information fields, no XMP packet inherited from the source, and no earlier revisions — the metadata is not stripped from the old file, it simply never exists in the new one. The same applies to images: the exported file is re-encoded from the canvas, so EXIF, GPS and embedded thumbnails do not come along. It runs entirely in your browser, which matters here: sending a file to a metadata-removal service means the service now has both the file and the metadata.

Check it afterwards. Always.

exiftool cleaned.pdf | grep -Ei "author|title|creator|producer|gps|date"

Expect nothing but the file size and format lines. If a name, a path or a coordinate is still there, the file is not ready to send.

Related: why the black boxes themselves leak, and the pre-release checklist.

Strip it in the browser — free, nothing uploaded