DPI is a print instruction, not an image property
An image file contains a grid of pixels. That grid has a width and a height, and those two numbers are the entire content of the image as far as any screen is concerned.
DPI, or more correctly PPI for digital files, is a separate number stored in the metadata that says how densely those pixels should be laid down when printed. It does not change a single pixel. Setting a file from 72 to 300 without resampling changes nothing about the image; it changes an instruction about how big it should be on paper.
This is the source of an enormous amount of confusion, because design software surfaces DPI prominently and people reasonably assume a number that visible must be doing something.
On screen, DPI is ignored entirely
Browsers, phones, televisions, and every other display device read the pixel grid and ignore the DPI field completely. A 1000x800 image occupies 1000x800 device pixels regardless of what its metadata claims.
The persistent myth that web images should be 72 DPI comes from early Macintosh displays, which genuinely were about 72 pixels per inch. That has not been true of any mainstream display for decades, and it was never a requirement even then.
If someone asks you for a 72 DPI image for a website, what they need is an image of appropriate pixel dimensions. The DPI number in the file is irrelevant to the request and changing it will not satisfy them if the pixels are wrong.
In print, DPI is the whole game
A printer lays ink at a fixed physical density. At 300 DPI, each inch of paper receives 300 pixels of your image. So the physical size of a print is entirely determined by pixel count divided by DPI.
A 3000x2400 image at 300 DPI prints at 10 by 8 inches. The same file at 150 DPI prints at 20 by 16 inches, with each pixel covering four times the area and correspondingly more visible.
This is why print shops specify DPI: they are telling you how many pixels they need for the physical size you asked for. The conversion is simple multiplication, and doing it yourself removes all the ambiguity.
The pixel numbers you actually need
At 300 DPI, the standard for quality printing:
- A4 (210x297mm): 2480x3508 pixels
- A5: 1748x2480 pixels
- US Letter (8.5x11in): 2550x3300 pixels
- 6x4 inch photo print: 1800x1200 pixels
- 10x8 inch print: 3000x2400 pixels
- Business card (85x55mm): 1004x650 pixels
When 300 is more than you need
300 DPI is the standard for anything held at reading distance, because that is roughly the limit of what the eye resolves at 30cm. It is not a universal requirement.
Viewing distance scales the requirement down fast. A poster viewed from two metres is fine at 150 DPI. A billboard is routinely printed at 30 DPI or less, because nobody stands close enough for it to matter. Insisting on 300 DPI for a large-format print produces an enormous file for no visible benefit and may exceed what the printer can even process.
The rule of thumb: halve the DPI requirement for every doubling of viewing distance beyond arm's length.
Changing DPI without resampling changes nothing
In most image editors, the resize dialog has a resample checkbox. With it off, changing DPI only edits the metadata — the pixel grid is untouched and the file size does not change. That is a print instruction change.
With it on, changing DPI while holding the physical size fixed forces the software to invent or discard pixels. Going from 72 to 300 this way upscales by more than four times, producing a soft, interpolated image that is large but not detailed.
This is where the myth becomes actively harmful. Someone asks for 300 DPI, a well-meaning person resamples a web image up to hit the number, and the print comes back visibly soft. The file has the right metadata and the wrong pixels.
You cannot add detail after the fact
If you have a 800x600 photo and need a 10x8 inch print at 300 DPI, you need 3000x2400 pixels and you have 480,000 of the 7.2 million required. No software recovers the rest.
Upscaling produces a bigger file that prints at the requested size and looks soft. Sometimes that is acceptable — an image printed as one element in a collage, or something viewed from across a room. Often it is not.
The only real fix is going back to a higher-resolution source: the camera original rather than the emailed copy, the design file rather than the exported PNG, the print-resolution asset rather than the one from the website.
What to do when a printer asks for 300 DPI
Ask what physical size the print will be, multiply each dimension in inches by 300, and check whether your image has at least that many pixels. That is the entire calculation.
If it does, set the DPI field to 300 with resampling off and send it. If it does not, say so before printing rather than upscaling silently and hoping.
For anything being professionally printed, also ask about bleed and colour profile at the same time. Those two catch out more jobs than resolution does, and they are worth resolving in the same conversation.
Frequently asked questions
Does DPI matter for web images?
No. Browsers and screens ignore the DPI field entirely and use only the pixel dimensions. The 72 DPI convention is a myth from 1980s Macintosh displays.
What size is an A4 image at 300 DPI?
2480x3508 pixels. Multiply each dimension in inches by the DPI to get the pixel requirement.
How do I change an image to 300 DPI?
Set the DPI field with resampling turned off. That changes the print instruction without touching the pixels — which is what you want, provided you already have enough of them.
Can I turn a 72 DPI image into 300 DPI?
You can change the number, but if the pixel count is too low for the physical size you need, the print will be soft. The metadata is not the constraint; the pixels are.
Is 300 DPI always necessary for printing?
No. It suits reading distance. Posters are fine at 150 DPI and billboards at 30, because viewing distance scales the requirement down.
What is the difference between DPI and PPI?
PPI describes pixels in a digital file, DPI describes ink dots on paper. The terms are used interchangeably in practice and the arithmetic is the same.