Your PDF knows who made it
Open the Properties panel of almost any PDF and you will usually find the author’s name, the software that created it, and the exact date it was written. That information is fine internally but often something you do not want to ship to a client, publish online, or attach to a public filing. This tool wipes it cleanly.
How it works
A PDF carries metadata in two places. The Info dictionary is the legacy key/value block with fields like /Author and /CreationDate. The XMP metadata stream is a modern XML packet referenced from the document catalog under /Metadata, and it frequently duplicates the same author and creator details.
The remover:
- Loads the PDF with pdf-lib and reads the existing Info fields so it can show you exactly what was there.
- Overwrites every Info field with an empty value and resets
CreationDate/ModDateto a neutral epoch value. - Deletes the
/Metadataentry from the catalog so the XMP packet is dropped too. - Re-saves and offers the sanitised PDF for download.
Tips and notes
- Clear both, not one. A common mistake is editing only the Info fields in a desktop viewer while the XMP packet still names the original author. This tool handles both automatically.
- Content is untouched. Text, images, form fields, and page order are preserved — only properties change.
- Dates are neutralised, not blanked. PDF writers always emit a date, so the cleaned file shows the Unix epoch rather than your real authoring time.
- For removing embedded image EXIF inside a PDF’s pictures, re-export those images separately; this tool targets document-level metadata.