What error 16 actually means
You double-click a PDF, Illustrator spins for a second, then slaps you with “Cannot open the illustration. The file is not a valid PDF document.” Error code 16. I know this error is infuriating — especially when the PDF opens fine in Acrobat or Preview. That's the twist: Illustrator is stricter than your PDF reader. It's not just checking if the file is a PDF; it's checking if it can parse every object, font, and color space inside. If anything is off — a broken cross-reference table, a weird encoding, or a PDF feature Illustrator doesn't support — it throws error 16.
I've seen this pop up most often when someone exports a PDF from a non-Adobe app (Canva, Figma, some scanner software) or when a file gets truncated during email transfer. The fix depends on how the file got broken. Below is a troubleshooting flow: start with the 30-second checks, move to the 5-minute fixes, and only go advanced if you have to.
Level 1: The 30-second fixes
Try these first. They cost nothing and solve maybe 20% of cases.
- Open the PDF in Acrobat or Preview. If it opens there, the file isn't completely dead — skip to Level 2. If it won't open anywhere, the file is corrupt. Jump to Level 3.
- Check the file size. A 0 KB or suspiciously small PDF (like 2 KB when it should be 2 MB) means the download failed. Re-download from the original source.
- Rename the file. Seriously. Special characters in the filename — emojis, curly quotes, non-ASCII letters — can break Illustrator's file parser on Windows. Rename it to something like
test.pdfand try again. - Restart Illustrator. If you've had it open for days, memory leaks can cause weird read errors. Quit fully (not just close the window) and relaunch.
If none of that worked, the problem is inside the file. Keep going.
Level 2: The 5-minute fix — re-save the PDF
This is the real fix for most error 16 cases. You need to rewrite the PDF in a way Illustrator can digest. Here's how:
Option A: Print to PDF (works 80% of the time)
- Open the PDF in Acrobat, Preview, or even Chrome.
- Hit
Ctrl+P(orCmd+Pon Mac) and choose Microsoft Print to PDF or Save as PDF. - Save it as a new file, then open that new file in Illustrator.
Printing flattens the PDF and rebuilds the internal structure. It strips out embedded JavaScript, form fields, and weird metadata that Illustrator chokes on. Downside: any vector text might get rasterized if the print settings aren't right. Set the printer to High Quality and make sure “Print as image” is off.
Option B: Re-export from the source app
If you have the original file (the .ai, .indd, .fig, or whatever it came from), open it there and export a fresh PDF. Use PDF/X-4 or PDF 1.7 (Acrobat 8/9) — not PDF 2.0. Illustrator CC 2020 and later can open PDF 2.0, but older versions (CS6, CC 2018) can't, and they'll throw error 16 even on perfectly valid PDF 2.0 files. This trips up a lot of people who get a PDF from a printer or client using the latest software.
Option C: Flatten in Acrobat
Open the PDF in Acrobat Pro (not Reader — you need Pro). Go to File > Save As Other > Optimized PDF. In the dialog, check “Flatten transparency” and save. Then try Illustrator again. This rebuilds the object tree and often clears up the issue.
Level 3: Advanced fixes (15+ minutes)
If Level 2 didn't work, the PDF is genuinely damaged. Time to get surgical.
Repair the PDF with Ghostscript
Ghostscript is a free command-line tool that can rebuild wrecked PDFs. Install it (Windows: grab the .exe from the official site; Mac: brew install ghostscript). Then run:
gswin64c -o repaired.pdf -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress original.pdf
On Mac or Linux, swap gswin64c for gs. This rewrites the PDF from scratch. In my experience, it fixes about 60% of corrupted PDFs that other tools can't touch. The output file loses some features (no layers, no interactivity) but Illustrator will usually open it.
Try a PDF repair utility
If Ghostscript fails, tools like PDF Repair Toolbox or Stellar Repair for PDF can sometimes recover data Ghostscript can't. They're not free (usually $30–$50), so only worth it if the file is critical. I've had clients recover files this way when nothing else worked.
Extract the content manually
Last resort: if the PDF opens in Acrobat but not Illustrator, you can sometimes pull the images out. Go to File > Export To > Image > JPEG in Acrobat and export each page at 300 DPI. Then place those images in a fresh Illustrator document and trace them. It's ugly, but if you just need the visuals, it works.
Check for version mismatch
One more thing: if you're on an old Illustrator (CS6, CC 2017), and the PDF was made with Adobe Acrobat 2023 or later, error 16 can appear even though the file is fine. The fix is to open the PDF in Acrobat and re-save it as Acrobat 8/9 (PDF 1.7) before importing. Illustrator versions before 2020 don't support PDF 2.0 at all, and they give this misleading “not a valid PDF” error instead of a clear “unsupported version” message.
When to give up and ask for a new file
Sometimes the file is just gone. If Acrobat can't open it either, and Ghostscript fails, and the repair tool fails — it's dead. Email the person who sent it and ask them to re-export. Nine times out of ten they'll say “oh, that was an old export, let me send a new one” and the new file works immediately. Don't burn three hours on a file that's beyond saving.
Quick reference
| Symptom | Likely cause | Fix |
|---|---|---|
| Opens in Acrobat, not Illustrator | Unsupported PDF feature | Print to PDF or flatten in Acrobat |
| Won't open anywhere | Corrupt file | Ghostscript repair or re-download |
| 0 KB file | Failed download | Re-download from source |
| Works on coworker's PC, not yours | Different Illustrator version | Update Illustrator or re-save as PDF 1.7 |
Start at Level 1, work down. Most people solve it at Level 2 with a print-to-PDF. If you're still stuck, the file is probably toast — ask for a new export.