Guide
Print Sizes in Pixels at 300 DPI: Full Table
One multiplication — inches times DPI — turns any print size into the pixel dimensions a design file actually needs.
By Buğra SözeriPublished
A design file exported at the wrong pixel dimensions prints either blurry or needlessly huge, and the fix is one multiplication: pixels equal inches times DPI. The table below runs that formula for the sizes designers hit most often; the DPI / PPI calculator runs it for any custom size.
The formula
Pixels = inches × DPI, applied to width and height independently. An 8.5 × 11 inch US Letter page at 300 DPI needs 2550 × 3300 pixels: 8.5 × 300 = 2550, and 11 × 300 = 3300. The same page at 150 DPI only needs 1275 × 1650 — half the linear pixels, but a quarter the total pixel count, since area scales with the square of the linear dimension.
Common sizes at 300 DPI
| Size (inches) | Common use | Pixels at 300 DPI |
|---|---|---|
| 4 × 6 | Standard photo print | 1200 × 1800 |
| 5 × 7 | Photo print | 1500 × 2100 |
| 8 × 10 | Photo print / portrait | 2400 × 3000 |
| 8.5 × 11 | US Letter | 2550 × 3300 |
| 8.5 × 14 | US Legal | 2550 × 4200 |
| 11 × 17 | US Tabloid / ledger | 3300 × 5100 |
| 18 × 24 | Small poster | 5400 × 7200 |
Why 300, specifically
300 DPI is a viewing-distance convention, not a law of optics. At the distance people typically hold a photo or a document — roughly arm’s length — the eye generally stops resolving individual printed dots somewhere in the range of 250-300 per inch, so pushing past 300 DPI on that kind of material produces files that are larger without looking any sharper. That threshold is specific to close, static viewing; it isn’t a fixed rule for every print medium. For the distinction between DPI (a print concept) and PPI (the display equivalent), see DPI vs PPI vs density.
When lower DPI is the right choice
Viewing distance is the variable that actually matters, and it scales inversely with the DPI you need:
- Large-format prints— banners, trade-show backdrops, billboards — are routinely produced at 150 DPI or lower, because they’re viewed from several feet or more away, where the eye can’t resolve the same dot density it could at arm’s length. Exporting a billboard file at 300 DPI produces a file dozens of times larger than necessary for no visible benefit.
- Screen design isn’t a DPI decision at all. Digital displays don’t print physical dots; they use fixed pixel grids, and design for them is usually specified in device pixel ratios (1x, 2x, 3x) rather than a DPI target — a different problem the DPI / PPI calculator still helps sanity-check when you need to translate a screen asset’s pixel density into an equivalent DPI figure.
Before exporting, it’s also worth checking that width and height stay proportional to the intended print size — the aspect ratio calculator catches a mismatched crop before it becomes a stretched or letterboxed print.
Frequently asked questions
- Why is 300 DPI the standard for print design?
- At a normal reading distance, the human eye generally can't distinguish individual dots above roughly 300 per inch on typical printed materials, so 300 DPI is the point past which more resolution stops producing a visible sharpness improvement for most commercial printing processes. It became the de facto industry default for photos, brochures, and documents viewed at arm's length.
- What's the formula to get pixel dimensions from a print size?
- Pixels = inches x DPI, applied to width and height separately. An 8.5 x 11 inch page at 300 DPI needs 2550 x 3300 pixels (8.5 x 300 = 2550, 11 x 300 = 3300). Use the DPI calculator to run this for any size and DPI target.
- Is 300 DPI always necessary?
- No. It's the safe default for close-viewed print like photos and brochures. Large-format prints viewed from a distance — banners, billboards, bus-stop posters — are commonly produced at much lower DPI (150 or even under 100), because the viewing distance is far enough that the eye can't resolve the same dot density anyway. Screen design doesn't use DPI/PPI targets at all in the same way; it targets device pixel ratios instead.
- Does DPI affect file size?
- Yes, substantially. Pixel count scales with the square of DPI at a fixed print size — doubling DPI roughly quadruples the pixel count and the uncompressed file size. An 8x10 photo print at 150 DPI needs about 1.2 million pixels; the same size at 300 DPI needs about 4.9 million pixels, a difference worth planning storage and processing time around before exporting a large batch.
Sources & references
Authoritative references cited by this piece. Verified by Buğra Sözeri on the dates shown and re-checked at every deploy.
- Adobe — Image resolution and print quality — Standard industry reference for the 300 DPI print convention and resolution-vs-viewing-distance relationship(as of )
- US Government Publishing Office — print specifications — Reference for standard US paper sizes (Letter, Legal, Tabloid) used in the size table(as of )
Related
More guides on this topic
- Hex to RGBA: adding transparency to a hex color codePlain hex has no alpha channel — RGBA and 8-digit hex do. How to convert a hex color to a transparent rgba() value, and the two ways to write it in CSS.
- CSS color formats: hex, RGB, HSL, OKLCH — which to use whenHex is concise. RGB is explicit. HSL is human-tweakable. OKLCH is perceptually uniform. A working guide to picking the right format per use case.
- Color contrast for accessibility: WCAG 2.1, APCA, and what to actually shipWCAG's contrast formula has known flaws. APCA is the more accurate replacement. What to use today, and how to pick safely.
- RGB vs CMYK: Color Models for Screen and PrintWhy screens add light and printers subtract it, what 'K' is really doing in CMYK, and the gamut differences that turn a perfect on-screen design into a muddy print.
Published September 25, 2026