Understanding PPI vs DPI: The Complete Guide for Screens, Print & Retina
The terms PPI and DPI sit in nearly every monitor spec sheet, image-export dialog, and printer driver, and they are routinely used as synonyms. They are not the same thing. PPI describes what your eye sees on a screen; DPI describes what a printer lays down on paper. The math is similar, the contexts are different, and confusing them is the reason a lot of designers ship soft prints or mis-spec their hardware. This guide walks through what each number really measures, when they matter, and how to use a free PPI calculator to translate between them.
What does PPI actually measure?
PPI stands for pixels per inch — the count of physical pixels packed into a one-inch span on a digital display. It is a property of the screen, not of the image you put on it.
To compute PPI you need only two numbers: the screen's diagonal size in inches and its native resolution in pixels. Pythagoras gets the rest:
PPI = √(width² + height²) ÷ diagonal_inches
A 27-inch 4K monitor (3840 × 2160) works out to 163 PPI. An iPhone 15 Pro (1179 × 2556 on a 6.1-inch display) works out to about 460 PPI. Same formula, two very different visual experiences — because the iPhone packs nearly three times the pixel density into the same square inch.
PPI is independent of resolution. A 24-inch 1080p monitor and a 13-inch 1080p laptop ship the same number of pixels but the laptop will look noticeably sharper. This is why the screen-shopping headline number is rarely "2560 × 1440" by itself; designers and reviewers translate it into PPI before judging.
What does DPI actually measure?
DPI stands for dots per inch — the count of ink dots (or laser-toner dots, or sublimation dye dots) a printer can lay down across a one-inch strip. It is a property of the printer or the print job, not of the image file.
Inkjet photo printers commonly run at 1440 or 2880 DPI; commercial offset presses cap out around 2540 DPI. The number is much higher than typical PPI because each pixel of the source image is typically reproduced as a tiny halftone cluster of multiple ink dots, not a single solid dot.
When designers say "export this image at 300 DPI for print" they are using a shorthand. What they actually mean: size the file so it has 300 pixels across each inch of the final printed dimension. That converts to a pixel count via the same multiplication you'd use for screen sizing — but the output medium is paper, the unit of inspection is naked-eye sharpness at reading distance, and the historical baseline of 300 came from how many halftone dots an offset press could render to fool the eye into seeing continuous tone.
When PPI and DPI mean the same thing
There is one case where the two numbers are interchangeable: image-editing software's print-resolution metadata. Open any PNG or TIFF in Photoshop, GIMP, or Affinity Photo, and you'll see a field labeled "Resolution" with a unit of "pixels per inch." Set it to 300 and the file metadata records 300 PPI; print the file at its tagged size and the printer will receive 300 dots per inch on paper. In this context PPI and DPI describe the same number from two angles — pixels per inch in the file, dots per inch on the page.
This is the only place the two terms collapse into each other. In every other context — screen reviews, retail spec sheets, monitor benchmarks, mobile app development — PPI is a property of the display and DPI is a property of the printer, and the numbers do not interchange.
What is Retina, really?
When Apple introduced the iPhone 4 in 2010, marketing called its 326 PPI display "Retina" — a word borrowed from human-vision research that meant the screen had enough pixel density that, at the typical viewing distance, the eye couldn't resolve individual pixels. The term has since become genericized; reviewers casually call any phone over ~300 PPI "retina-class," and any tablet over ~220 PPI similarly.
The actual definition Apple cited is more precise. It draws on the visual-acuity standard of one arcminute — the smallest angle the average human eye can distinguish. A pixel that subtends one arcminute or less at the viewer's eye is, by this standard, invisible. The math:
threshold_PPI = 3437.75 ÷ viewing_distance_in_inches
At 30 cm (a typical phone-grip distance, about 11.8 in), the threshold is 291 PPI. The original Retina iPhone at 326 cleared this threshold with a small margin. At 60 cm (a laptop on a desk), the threshold drops to 145 PPI; nearly every modern laptop screen has been Retina by this measure for over a decade. At 3 m (a TV in a living room), the threshold is just 29 PPI; even a 1080p 50-inch TV (44 PPI) is "Retina at typical living-room distance."
What this means in practice: Retina is distance-dependent. There is no absolute PPI that always counts as Retina, and there is no absolute number above which more pixels are visible. The only honest answer to "is this screen Retina?" is "Retina at how far away?"
The four sharpness tiers in practice
For everyday product shopping it helps to compress the math into four bands, each calibrated for the typical use distance of its device class:
- Standard (under 100 PPI). Legacy CRT, older 1366×768 laptops, budget 24-inch 1080p monitors. The pixel grid is visible in fine text from a normal sitting distance. These screens still work; they just don't pretend to be sharp.
- High (100–219 PPI). "HiDPI" laptops, most 27-inch 4K monitors, 1080p phones from 2015 and earlier. Comfortable for desk work but text rendering benefits from anti-aliasing — without it, character edges look slightly rough up close.
- Retina (220–299 PPI). iPad, MacBook Pro Retina, 14-inch 1800p laptops, mid-range 6-inch phones. Genuinely indistinguishable pixels at the device's native viewing distance. Diminishing returns on going higher.
- Super Retina (300+ PPI). Modern smartphones (326 baseline, 460+ for the Pro tier). The extra density is invisible to the eye at handheld distance but useful for VR/AR scenarios where the screen ends up much closer.
Anything above the user's viewing-distance threshold is, by definition, wasted in normal use — invisible to the eye, but still consuming GPU bandwidth, battery, and rendering cost. This is why high-end phones offer 120 Hz refresh-rate optimization but stop chasing pixel density past around 460 PPI.
How many pixels does a print job actually need?
The print rule of thumb of "300 DPI" comes from offset printing's halftone resolution: at 300 dpi a print fools the unaided eye into seeing continuous tone at typical reading distance (about 25–30 cm). For most consumer photo work this is the right target. For poster prints meant to be viewed from across a room, 150 DPI is plenty; for large-format fine art that will be inspected up close, some studios push to 600 DPI.
Once you've picked the target DPI, sizing the file is a single multiplication:
required_pixels_W = print_inches_W × DPI
required_pixels_H = print_inches_H × DPI
An 8 × 10 inch photographic print at 300 DPI needs 2400 × 3000 pixels. A4 paper (8.27 × 11.69 in) needs 2481 × 3507 at the same DPI. A US Letter (8.5 × 11) needs 2550 × 3300. The print mode of our PPI calculator does this multiplication for any input, including the inverse direction — given an existing image and a target print size, it tells you the effective DPI you'd be printing at.
The most common print mistake: sizing a file at "300 PPI in Photoshop" without checking the document dimensions. A 1024 × 1024 pixel file tagged at 300 PPI is fine for a 3.4-inch square stamp print and looks soft if you scale it up to 8 × 8 inches. The metadata field doesn't change the underlying pixel count; it just records the intended output size.
Pixel density and device pixel ratio
Modern phones and laptops report two distinct pixel coordinate systems to web browsers and apps. The physical pixel is the actual hardware element on the panel; the CSS pixel (or "device-independent pixel") is a logical unit defined relative to the user's viewing distance. The ratio between them — window.devicePixelRatio — is typically 2 on Retina screens, 3 on Super Retina phones.
For web designers this matters because raster image assets need to be served at twice the CSS dimension on a Retina screen, three times on Super Retina, to render sharply. A 100 × 100 CSS-pixel icon needs to ship a 200 × 200 source on a 2× device, otherwise the browser scales the smaller bitmap up and you get visible blur. Modern image formats like AVIF and srcset markup automate the selection. Vector formats (SVG, web fonts) sidestep the problem entirely — they re-render at the device's actual pixel density and stay sharp regardless.
Higher PPI is not always better
Beyond the user's distance-dependent threshold, additional PPI delivers no visible benefit. It does, however, deliver real costs:
- Battery and GPU. Rendering 4K on a phone screen requires roughly four times the fragment-shader work of 1080p; that translates directly into screen-on time and case temperature.
- Bandwidth. Web sites serve heavier image variants for high-DPR clients. The mobile connection still has to carry them.
- App-startup memory. A 460 PPI iPhone holds three or four versions of every cached UI texture in memory. Older devices with the same screen size but lower density use a fraction of the RAM.
The sensible target for any device is "comfortably exceed the Retina threshold for the distance the device is actually used at, with a small margin for users who lean in close" — not "as high as possible." This is why industry headline pixel densities have plateaued near 460 PPI for handsets and 220 PPI for laptops; further increases are invisible to the eye and visible to the battery.
Putting the calculator to work
The four scenarios our PPI calculator covers map to the four practical questions this guide has answered. Auto-detect mode reads your current screen and reports its PPI plus tier — a one-second answer to "what am I looking at right now?" Screen mode handles the common spec-sheet calculation: enter inches and resolution, get a PPI plus a Retina verdict at any distance you slide the control to. Print mode flips the question: given paper dimensions and a target DPI, how many pixels does the source need? Compare mode draws two to four devices side by side at their actual physical scale, which is the fastest way to grasp how a 6.1-inch phone really stacks up against a 27-inch monitor.
PPI and DPI are simple math sitting under most decisions about screens and prints. Once the formulas are in your hands the rest — including which monitor to buy, how to size your camera output for the gallery wall, why your app's icons look different on a colleague's MacBook — falls into place.
Related Articles
15 Questions About Aspect Ratio Calculator Answered
Common questions about aspect ratio calculators — how they work, when to use one, how to interpret outputs, and the edge cases that trip up first-time users.
Aspect Ratio Calculator for Professionals: Advanced Use Cases
How video editors, broadcast engineers, motion designers, and front-end developers use aspect ratio calculators in production workflows — beyond the 16:9 basics.
Using Aspect Ratio Calculator and Screen Ruler Together
A workflow guide for pairing the aspect ratio calculator with the on-screen ruler — matching physical print dimensions to display ratios, verifying device screen ratios, and bridging from pixels to physical inches.