Print Preview Lies? Fix When Printed Output Differs
Your print preview shows one thing, but the printer spits out something else. Here's the real fix—and why it works.
That Preview Isn't What You'll Get
I know it's maddening. You spend ten minutes tweaking margins, fonts, and images in the preview pane, click Print, and the paper looks nothing like what you saw. The text is cut off, images shifted, or everything's the wrong size. I've been there more times than I can count. Let's fix it.
The Fastest Fix: Check the Printer's Page Setup
Skip the application's print dialog for a second. Go straight to your printer's driver settings. On Windows, hit Start > Settings > Bluetooth & devices > Printers & scanners. Click your printer, then Printing preferences. On Mac, open System Settings > Printers & Scanners, select your printer, and hit Options & Supplies.
Look for these troublemakers:
- Scale to fit or Fit to page – turn this OFF. It's almost always the culprit.
- Paper size – make sure it matches what's actually loaded. An A4 document printing on Letter paper will shift everything.
- Orientation – portrait vs. landscape mismatch is a classic.
Real-world trigger: I once spent an hour troubleshooting a client's HP LaserJet where every invoice printed with the left margin chopped off. The preview looked perfect. The culprit? The driver had "Fit to page" enabled, which scaled the content to a slightly smaller paper size than what was loaded. Turning it off fixed it instantly.
Why This Works
Here's the thing: the print preview you see in Word, Chrome, or Acrobat is generated by the application's rendering engine. It doesn't care about your printer's quirks. But when you hit Print, the driver takes over and applies its own scaling, margins, and orientation. If those driver settings conflict with what the app previewed, you get different output.
Think of it like this: the preview is a map drawn by the app. The printer driver is the car that follows the map. If the car has its own GPS (scale settings) it will take a different route. Always align the two.
Less Common Variations
1. Browser Print Preview vs. Actual Print
Chrome, Edge, and Firefox each have their own print preview engine. If you're printing a web page, the browser's preview often shows a simplified layout that doesn't match the rendered page. Fix: In Chrome, click More settings in the print dialog, and uncheck Simplify page. Also, set Margins to Minimum and pick Scale to 100 (not "Fit to page").
2. PDF Printing with Adobe Reader
Adobe Reader's print dialog has a hidden trap: under Page Sizing & Handling, the default is often Fit. Change it to Actual size or Custom Scale 100%. I've seen this cause a 5% scaling error that changed a 3-page document to 4 pages and messed up every image position.
3. Microsoft Office (Word, Excel)
Office apps have their own page layout settings that can override the printer driver. Check File > Print > Page Setup (the small link). Look at the Paper tab and make sure the paper size matches your printer's loaded paper. Also check the Margins tab — sometimes the default margins don't match the printer's printable area. For Excel, the culprit is often Scale to Fit options under Page Layout.
4. Mac-Specific Nightmare
On macOS, the print dialog has a hidden dropdown called Preview (not the big preview pane). Under that, you can choose Layout and see if Pages per Sheet is set to something other than 1. I've debugged this for a friend whose MacBook printed 2 pages per sheet despite the preview showing single pages. The preview was a lie because the dialog previews the application output, not the final rasterized layout.
5. Print Spooler Corruption
Sometimes the difference is due to a corrupted print spooler that's holding onto old settings. On Windows, open a Command Prompt as administrator and type:
net stop spooler
cd %systemroot%\System32\spool\PRINTERS
del *.* /q
net start spooler
This clears all pending job settings. I've seen this fix a case where a document printed with completely wrong colors and missing elements every time, but the preview was fine.
Prevention for Next Time
Once you've dialed in the right settings, here's how to avoid this headache again:
- Save your printer preferences as a preset. On Windows, in Printing Preferences, click Save and give it a name like "Standard". On Mac, create a preset in the print dialog by tweaking settings and choosing Presets > Save Current Settings as Preset.
- Use the same app to preview and print. If you must preview in a different tool, export to PDF first. PDFs lock the layout so the printer driver has less room to mess things up.
- Check printer firmware updates. Printers like Canon PIXMA and HP Envy have known bugs that cause preview mismatches. Visit the manufacturer's support site, download the latest driver and firmware, and install them. This fixed a recurring issue for a client's Canon TS8320 where every print shifted 2mm to the right.
- Test with a plain text page. Print a page with a simple line of text and a box. If that matches the preview, the problem is in your document or app, not the driver.
I still remember the first time I chased this bug for three hours on my own blog's print troubleshooting guide. The fix was a single checkbox (Fit to page in the driver). Now I check that first every time. You should too.
Was this solution helpful?