What is a PDF?
PDF is one of those formats everyone uses and almost nobody thinks about. You download one, open it, read it, maybe print it. It works on your laptop, your phone, your tablet. It looks the same everywhere. That consistency is not accidental — it is the entire point of the format.
The short version
PDF stands for Portable Document Format. Adobe created it in 1993 to solve a specific problem: documents looked different depending on which computer and printer you used. A report formatted perfectly in WordPerfect on one machine would come out mangled on another with different fonts installed. PDF fixed this by packaging everything — text, fonts, images, layout instructions — into a single file that renders identically everywhere.
In 2008, PDF became an open standard (ISO 32000), meaning anyone can build software that creates or reads PDFs without paying Adobe. That is why every browser, every phone, and every operating system can open them today.
How it works under the hood
A PDF does not store a document the way Word does. Word stores structured content — paragraphs, headings, lists — that can reflow and adapt to different page sizes. A PDF stores precise drawing instructions: put this character at coordinates (72, 650) in 12-point Times New Roman, draw a line from here to here, place this image at these exact dimensions.
This is why PDFs always look the same — they are not describing a document that adapts to the viewer, they are describing a fixed page that gets reproduced exactly. It is also why editing a PDF is genuinely difficult. There are no paragraphs to rearrange, just positioned characters. Moving one line means repositioning everything below it manually.
What metadata hides inside
Every PDF contains a metadata section that most people never see. It typically includes the author's name, the date the file was created and last modified, the software used to generate it, and sometimes the original document title. PDFs created from Word documents often carry over the Word file's author information as well.
This metadata is not visible when you read the document normally. But anyone can view it — in Adobe Acrobat under File, Properties, or by using a tool like MetaScrub's PDF metadata inspector. Before sending a PDF externally, it is worth checking what the metadata reveals. Your name, your company, and the software you use are not secrets, but they are information you may not intend to share.
PDF vs other formats
PDF vs DOCX: Use PDF when the document is final and should not be edited. Use DOCX when the recipient needs to change the content. Converting between them is common — Word to PDF is straightforward, PDF to Word is trickier because of the fundamental format difference.
PDF vs images (JPG, PNG): PDFs can contain searchable text, multiple pages, and clickable links. An image is just pixels. If you are sharing a document, PDF is almost always better than a screenshot or a photo of a printout.
PDF vs HTML: Web pages adapt to screen size and can be interactive. PDFs are fixed. If the content needs to work on screens of all sizes and does not need to be printed, a web page is the better format. If it needs to look the same when printed from any device, PDF wins.
Common things people get wrong
"PDFs cannot be edited." They can, with the right software. Adobe Acrobat, Foxit, and other editors let you modify text and images. The editing experience is clunky compared to Word because of how the format works, but it is possible.
"PDFs are secure." A PDF can be password-protected, but a standard PDF with no password offers no security at all. The content is fully readable by any PDF viewer. Even password-protected PDFs can be bypassed with widely available tools — the protection is a deterrent, not a guarantee.
"Converting to PDF removes metadata." It does not. When you save a Word document as PDF, the PDF gets its own metadata — often including the same author name from the Word file. If you want a clean PDF, you need to explicitly strip the metadata after creation.