Open Tools Tools Features Blog About Contact Proof of Privacy
Guide

What Is a PDF?

August 15, 2026
10 min read
By Mehran

The linked tools process supported files in your browser. Your file is not sent to a QuickMerge processing server.

PDF stands for Portable Document Format. It is a file format that stores a document exactly as it was laid out — text, fonts, images, vector graphics and page geometry all fixed in place — so that it looks identical on every device, in every application, on any operating system, and when printed.

“Portable” is the operative word, and it means portable between systems rather than easy to carry. A PDF opened on a Windows laptop, an Android phone, a twenty-year-old Mac and a commercial printing press produces the same page every time. That guarantee sounds unremarkable now and was the entire reason the format was invented.

Why the format exists

In the late 1980s, sending a document to somebody else was genuinely unreliable. If they did not have your word processor, they could not open it. If they had it but not your fonts, the text substituted and the layout collapsed. If their printer had different capabilities, the output differed again. The common workaround was to print the document and post or fax it, which is what people did.

In 1991, John Warnock, co-founder of Adobe, circulated a paper describing a project he called Camelot. Its goal was to capture a document from any application and send it anywhere, so that it could be viewed and printed on any machine exactly as intended. That project became PDF, and Adobe announced version 1.0 in 1993 alongside Acrobat.

Adoption was slow at first — the software cost money and the files were large by the standards of the time — but two decisions changed that. Adobe made the reader free, which meant a PDF could be sent to anybody with confidence. And in 2008 Adobe released the format to the International Organization for Standardization, where it became ISO 32000-1. PDF stopped being a company’s product and became an open standard anyone could implement; the current version, PDF 2.0, is ISO 32000-2. That is why PDF is now the default for contracts, invoices, government forms, academic papers, manuals and statements almost everywhere.

What is actually inside a PDF file

A PDF is a structured document rather than a picture of a page, which is the thing that most surprises people. Open one in a text editor and you will see readable fragments among the binary. It has four parts.

The header is the first line and gives the version, such as %PDF-1.7. This is how software identifies the file regardless of its extension.

The body holds the objects that make up the document: page objects, font descriptors, embedded font programs, images, vector drawing instructions, and content streams containing the actual instructions for drawing a page — place this font at this size at these coordinates and draw this text.

The cross-reference table is an index recording the byte offset of every object. It is why a reader can open page 400 of a 500-page document instantly without parsing the first 399: it looks up the offset and jumps straight there.

The trailer points to the cross-reference table and the document catalogue, and is read first — readers start at the end of the file and work backwards.

Two consequences of that design are worth knowing. Fonts are usually embedded, so the document carries its own typefaces and does not depend on what is installed on the reader’s machine — this is the single biggest reason PDFs look identical everywhere. And a PDF can be modified by appending to it rather than rewriting it, called incremental update, which is how a digital signature can be added without disturbing the bytes it signed.

Text PDFs and scanned PDFs are not the same thing

Two files can both be PDFs and be entirely different inside, and almost every practical question about PDFs turns on which one you have.

A text-based PDF, exported from Word, a browser or design software, contains real text as characters. You can select it, copy it, search it, and a screen reader can read it aloud. These files are usually small, because text and font data are compact.

A scanned PDF is a photograph of a page wrapped in a PDF container. There is no text in it at all, only pixels. Nothing selects, nothing searches, and a screen reader finds nothing to read. These files are much larger, because the size is image data.

The test takes two seconds: open the file and try to select a line of text. If words highlight, it is text-based. If you get a rectangle over the whole page, it is a scan.

That test predicts nearly everything else. It tells you whether compression will help much — scans compress dramatically, text PDFs barely at all. It tells you whether converting to Word will produce editable text or a page with a picture on it. And it tells you whether you need OCR, which recognises characters in the image and adds a text layer, turning a scan into something searchable.

PDF/A, PDF/X and PDF/UA

Several restricted subsets of PDF exist for particular jobs. Each removes features that cause problems in its context, and each is a separate ISO standard.

PDF/A (ISO 19005) is for archiving. A document that must still open correctly in fifty years cannot depend on anything external, so PDF/A requires all fonts to be embedded and forbids encryption, JavaScript, audio, video and external references. Everything needed to render the page must be inside the file. National archives, courts and libraries commonly require it, and many document systems can convert to it on export.

PDF/X (ISO 15930) is for commercial printing. It requires colour to be specified unambiguously — CMYK or a named spot colour rather than RGB, which is device-dependent — and requires images to be embedded at adequate resolution, with trim and bleed boxes defined. A print shop asking for “PDF/X-4” is asking for a file whose colours will come off the press as intended.

PDF/UA (ISO 14289) is for accessibility. It requires the document to be tagged with real structure — headings as headings, tables as tables, reading order defined, images given alternative text — so that a screen reader can present it meaningfully. Public sector bodies in many countries are required to meet it.

All three remain ordinary PDFs and open in any reader. The constraints matter to the software that produces and validates them rather than to the person reading the file.

What you can do with a PDF

Because a PDF is structured rather than flat, a lot can be done to one without any specialist software. Everything linked here runs inside your browser — the file is read in memory on your own device and is never uploaded, which matters given that PDFs are where contracts, invoices, statements and identity documents live.

Change the pages. Merge several documents into one, split one into parts or extract a range, reorder or delete pages from thumbnails, and rotate pages that were scanned sideways.

Change the size. Compress a document that is too large to email — effective on scans, marginal on text files, for the reasons above.

Change the format. Convert to Word for editing, or export pages as images. Going the other way, images become a PDF and text becomes one.

Add to the document. Sign it with a drawn, typed or uploaded signature, type onto it to fill in a form that has no fields, build it into a fillable form for other people to complete, number the pages, or watermark it.

Control who sees what. Add a password with real AES-256 encryption, remove one you already know, redact sensitive content permanently, or inspect and strip the metadata that records the author, software and timestamps.

Read what is in it. Run OCR on a scan to make it searchable, or summarise a long document.

Frequently asked questions

What is the full form of PDF?

PDF stands for Portable Document Format. Portable here means portable between systems: the document displays and prints identically on any device, application or operating system, which was the problem the format was created to solve.

What is a PDF document?

A file that stores a document with its layout fixed — text, fonts, images, vector graphics and page geometry all held in place — so it looks the same everywhere. Fonts are normally embedded in the file, which is the main reason it renders identically regardless of what is installed on the reader’s machine.

Who invented the PDF and when?

Adobe. John Warnock, a co-founder, described the concept in a 1991 paper for a project called Camelot, and Adobe announced PDF 1.0 with Acrobat in 1993. Adobe released the format to ISO in 2008, where it became the open standard ISO 32000-1.

What format is a PDF file?

It is a structured document format rather than an image format. Internally it has a header giving the version, a body of objects such as pages, fonts and content streams, a cross-reference table indexing every object by byte offset, and a trailer that readers parse first.

Why can I not edit a PDF like a Word document?

Because a PDF stores drawing instructions with fixed positions rather than a reflowable stream of text. There are no paragraphs to push around. Editing means either re-typesetting the page or covering it — which is what tools offering in-place editing actually do.

What is the difference between PDF and PDF/A?

PDF/A (ISO 19005) is a restricted subset for long-term archiving. It requires all fonts to be embedded and forbids encryption, JavaScript, audio, video and external references, so the file is completely self-contained. Archives, courts and libraries often require it.

Why is my PDF so large?

Almost always because the pages are images rather than text. Try selecting a line: if nothing highlights, it is a scan, and the size is image data. Compressing such a file gives large savings, while a text-based PDF has very little to remove.

Can a PDF contain a virus?

A PDF can contain JavaScript and embedded files, and both have been used as attack vectors, so a malicious PDF is possible. Keep your reader updated, be cautious with unexpected attachments, and note that PDF/A forbids JavaScript entirely for exactly this kind of reason.

In short

The short answer is Portable Document Format, and the reason it matters is contained in the first word: a document that arrives looking the way it left. Knowing what is inside one — especially whether you have real text or a photograph of text — is what makes every other PDF question straightforward, from why a file will not compress to why a conversion produced a page with a picture on it. The full set of browser-based PDF tools is the practical end of it.

Work with a PDF without uploading it

Merge, split, compress, sign, convert and protect — all in your browser. No account.

Open the PDF tools
Mehran, founder of QuickMerge

Written by Mehran

Founder of QuickMerge. Practical guides built around the real behavior and limits of the tools. Connect on LinkedIn.