PDF Version Converter
Convert PDF files between different PDF specification versions. Max file size: 1GB.
PDF files only, up to 1GB
Why PDFs have versions
The PDF format has been revised many times since Adobe published the first spec in 1993, and each revision added new features: 1.3 added embedded fonts and fillable forms, 1.4 added transparency and JavaScript, 1.5 added object streams, 1.7 became an ISO standard, 2.0 (released in 2017) added new digital signature options and 3D content support. A PDF file declares its version in the first line so readers know which features to expect.
This tool changes the version number declared in the file header. It does not transcode content, optimize images, or remove unsupported features — it's a metadata-level adjustment. The underlying objects in the PDF stay exactly as they were.
When you actually need to do this
- Compatibility with old software. Some legacy enterprise systems, embedded printers, and government portals reject PDFs above a certain version (often 1.4 or 1.5). Downgrading the declared version sometimes lets the file through.
- Submission requirements. Patent offices, academic journals, and certain regulators specify a minimum or maximum version. The "PDF/A" archival profile, for instance, is built on PDF 1.4.
- Working around buggy parsers. Occasionally a PDF reader has a known issue with a specific version and rolling back the declaration is the simplest workaround.
- Forensic curiosity. If a PDF claims to be 1.4 but contains 1.7 features, it's been edited or assembled by something nonstandard. The mismatch itself is interesting.
What this won't do
Changing the declared version doesn't change what's in the file. If a PDF uses transparency (a 1.4 feature) but is relabeled as 1.3, a strict 1.3 reader may refuse to open it or ignore the transparency. If the file relies on 1.7 features, downgrading the label to 1.4 doesn't strip those features — it just makes the file's claim about itself inconsistent. For a true downgrade you'd need to flatten transparency, embed all fonts, and remove unsupported objects, which is a much heavier transformation.
Most of the time, the version label is the only thing a strict checker looks at. So this lightweight rewrite solves the actual problem in most cases.
Version cheat sheet
- 1.3 — Acrobat 4. Embedded fonts, basic forms.
- 1.4 — Acrobat 5. Transparency, JavaScript, AES-128. The basis for PDF/A-1.
- 1.5 — Acrobat 6. Object streams, JPEG 2000, layers.
- 1.6 — Acrobat 7. 3D, AES-256.
- 1.7 — Acrobat 8/9. ISO 32000-1. The "modern" baseline you should expect everywhere.
- 2.0 — ISO 32000-2 (2017). New signature schemes, additional encryption, geospatial features.
Privacy
The conversion runs in your browser. Your PDF is read locally with the File API, edited in memory, and offered back to you as a download. Nothing is uploaded to a server, which matters for files that contain anything sensitive — contracts, scans, IDs.