Also known as: Portable Document Format, PDF file, ISO 32000
PDF (Portable Document Format) is a page-description file format that locks the exact layout, fonts, and graphics of a document so it renders identically on any device — which is why contracts, invoices, bank statements, and forms are almost always shared as PDFs.
Overview
PDF was created by Adobe in 1993 and has been an open ISO standard (ISO 32000) since 2008, so no single vendor owns it. Under the hood a PDF stores text as individually positioned glyphs, vector paths, embedded raster images, and the fonts needed to draw them — that is exactly why the layout is fixed and looks the same everywhere, and also why reflowing the text like a word processor is hard.
There is a crucial distinction between a 'real' PDF and a scanned one. A PDF exported from a word processor or browser has a text layer: the characters are in the file, so you can select, search, copy, and extract them. A scanned PDF is just a stack of page images with no text layer at all — getting words out of it requires OCR first.
PDF is also the file people most often drop into sketchy 'free online' converters, and the format most likely to contain something private: a signed contract, a payslip, a passport scan, an NDA. Browser-only PDF tools sidestep that risk entirely — pages are merged, split, and re-ordered with pdf-lib, rendered to images and read for text with Mozilla's pdf.js, and encrypted or decrypted with AES via the @cantoo/pdf-lib fork, all on your own device. Open DevTools → Network while you work and zero requests fire.
Common questions about PDF
Can I edit a PDF without Adobe Acrobat?
What's the difference between a text PDF and a scanned PDF?
Are free online PDF tools safe for confidential files?
Tools that work with PDF
Related concepts
OCR
OCR (Optical Character Recognition) is the process of turning images of text — a scanned page, a photo of a receipt, a screenshot — into machine-readable characters, so a picture of words becomes text you can select, search, and copy.
EXIF
EXIF (Exchangeable Image File Format) is the metadata standard cameras and phones embed inside JPEG photos — including GPS coordinates, camera model, capture timestamp, and shutter settings — which is why a holiday photo can quietly leak the exact street address it was taken at.