๐Ÿ–ฅ๏ธ Pixels to MM / CM / Inches Converter

Last updated: January 23, 2026

Pixels to MM / CM / Inches

Convert screen pixels to real-world physical measurements

Conversion Results

Why Pixels Don't Tell You Anything About Physical Size

Here's something that catches a lot of people off guard: a 1000-pixel wide image doesn't have a fixed physical size. On a massive 27-inch monitor it might span 25 centimeters. Print it on a 300 DPI laser printer and that same image is only about 8.5 cm wide. The pixel count alone is meaningless โ€” you need to know the density, expressed as DPI (dots per inch) or PPI (pixels per inch), to convert to a real-world measurement.

This creates a very practical problem for anyone working at the intersection of screen design and physical output. Graphic designers prepping files for print, developers checking whether a UI element will be the right size on a device, photographers sizing images for photo books โ€” all of them need to answer the question: how big is this, actually?

The Math Behind the Conversion

The formula is straightforward once you understand what DPI means. DPI tells you how many pixels (or dots) fit in one inch. So if you have 300 pixels and a DPI of 96:

inches = pixels รท DPI
300 รท 96 = 3.125 inches

From there, converting to millimeters or centimeters is just multiplication by a fixed constant โ€” 25.4 for mm, 2.54 for cm, since there are exactly 25.4 millimeters in an inch.

mm = (pixels รท DPI) ร— 25.4
cm = (pixels รท DPI) ร— 2.54

So our 300px at 96 DPI becomes 3.125 inches, or 79.375 mm, or 7.9375 cm. The reverse works just as cleanly: if you need a 210mm wide image at 300 DPI for print, divide 210 by 25.4 to get inches (8.267), then multiply by 300 to get 2480 pixels.

Which DPI Value Should You Actually Use?

This is where most people get confused, and it's worth spending a moment on it. DPI isn't a property of the image file โ€” it's a property of the output device or a metadata tag embedded in the file. Here are the most common scenarios:

96 DPI โ€” Standard Windows screens. This is the historical default for most desktop monitors running Windows. CSS pixel calculations in web browsers are based on 96 DPI. If you're trying to figure out how something looks on a typical office PC, this is your number.

72 DPI โ€” Old Macintosh standard. Apple originally built its display system around 72 PPI, which matched the 72 points-per-inch used in traditional typography. Modern Macs are much higher density, but 72 DPI still appears in some design software defaults and legacy workflows.

150โ€“200 DPI โ€” Tablets and mid-range phones. A standard iPad non-Retina screen runs around 132 PPI. Mid-range Android devices typically land in the 150โ€“200 range.

192 DPI โ€” Retina / 2x displays. Apple's Retina displays double the pixel density compared to the base resolution, which is why iOS uses a 2x scale factor. 192 DPI is double the old 96 DPI baseline.

300 DPI โ€” Professional print standard. When you send a file to a commercial printer, 300 DPI is the industry minimum for sharp results. Magazine photos, business cards, posters intended for close-up viewing โ€” all need at least 300 DPI source material.

458 PPI โ€” iPhone 14 Pro and similar flagship screens. Modern flagship smartphones push pixel density very high. If you're designing something that needs to look physically precise on a specific device, look up that device's exact PPI spec.

A Real-World Example: Sizing a Banner for Both Screen and Print

Say you're designing a promotional banner. The final print version needs to be A4 width โ€” 210 mm โ€” at 300 DPI. How many pixels wide does your canvas need to be?

Step 1: Convert mm to inches: 210 รท 25.4 = 8.267 inches
Step 2: Multiply by DPI: 8.267 ร— 300 = 2480 pixels

So you set up your design file at 2480 pixels wide. Now your client also wants a web version. A typical HD display runs at 96 DPI. If you display those same 2480 pixels on a 96 DPI screen, how wide does it appear?

2480 รท 96 = 25.83 inches = 656 mm

That's over half a meter wide on screen โ€” clearly too big for a website layout. You'd need to scale the image down for web use. This is exactly the kind of translation problem that trips up people new to print design, and understanding the DPI relationship is what makes it click.

Using the Converter for Print Design Work

The most common use case for this tool is checking whether an image has enough resolution for its intended print size. A client sends you a 800ร—600 pixel photo and wants it printed as a 10ร—8 inch framed print. Will it look sharp?

Check the width: 800 pixels รท 10 inches = 80 DPI effective resolution. That's far below 300 DPI โ€” the print will look blurry and pixelated. You'd need at minimum 3000 pixels across for a sharp 10-inch print at 300 DPI.

Working backwards with the reverse conversion (inches to pixels) is a clean way to figure out minimum image requirements before you start a project, rather than discovering the problem after the client has approved a design.

The CSS / Web Design Angle

Web designers deal with a different version of this problem. CSS uses "reference pixels" anchored to 96 DPI at arm's length, which means a 96px element is supposed to appear about 1 inch wide on a standard monitor. But on a Retina screen running at 192 DPI, the browser's device pixel ratio (DPR) is 2 โ€” the browser doubles the physical pixels used to render each CSS pixel, keeping the apparent size consistent.

If you're working with device-specific sizes or trying to match a physical measurement exactly on a known device, you need that device's actual PPI. A 100px element on an iPhone 14 Pro (458 PPI, 3x scale factor) uses 300 physical pixels but renders at the apparent size of about 100/96 of an inch.

This converter helps you think through those relationships without doing the arithmetic in your head every time.

Avoiding the Common Mistakes

A few things trip people up repeatedly. First, the DPI of an image file (set in the file's metadata by Photoshop, Lightroom, or a camera) is just a suggestion โ€” it tells software how to interpret the pixels, but it doesn't change how many pixels exist. Changing the metadata DPI tag in Photoshop without resampling doesn't add or remove pixels; it just changes how the file thinks of its own size.

Second, screen PPI and print DPI, while measured in the same units, describe slightly different things. Screen PPI counts light-emitting pixels per inch of display panel. Print DPI counts ink dots per inch โ€” and modern printers often use multiple dots to create a single perceived pixel of color, which is why some inkjets print at 1200 DPI or higher but still only need 300 DPI source files.

Third, not all monitors run at their native resolution. A 4K monitor used at 150% scaling in Windows is presenting a different effective DPI than its raw hardware PPI would suggest. For screen accuracy, check your OS display scaling settings, not just the monitor spec sheet.

Once you internalize the inch-as-bridge concept โ€” pixels to inches via DPI, then inches to metric โ€” these conversions stop being mysterious and become routine. This tool just takes the arithmetic off your plate so you can focus on the actual design work.

FAQ

What DPI should I use to convert pixels to mm for printing?
Use 300 DPI for professional print output โ€” this is the standard for sharp results in commercial printing, magazines, and photo prints. If you're sending to a basic home inkjet for casual use, 150โ€“200 DPI is often acceptable. Always check the print service's specifications before finalizing your file.
Why does the same pixel size look different on different screens?
Because screens have different pixel densities. A 500-pixel element on a 96 DPI monitor is about 5.2 inches wide. On a Retina display at 192 PPI, the same 500 CSS pixels renders using 1000 physical pixels but appears visually the same size thanks to the browser's device pixel ratio scaling. Physical size depends entirely on the output device's DPI.
How do I find the PPI of my specific monitor or phone?
For monitors, divide the horizontal pixel count by the screen width in inches. For example, a 1920-pixel wide screen on a 24-inch diagonal (roughly 20.9 inches wide) gives about 91.8 PPI. For phones and tablets, the manufacturer's spec sheet lists PPI directly โ€” or search '[device model] PPI' and you'll find it quickly. Sites like GSMArena list PPI for virtually every phone ever made.
Is there a difference between DPI and PPI?
Technically yes. PPI (pixels per inch) describes screen or image pixel density. DPI (dots per inch) describes printer output, where one rendered pixel might require several ink dots. In everyday use, people use both terms interchangeably when talking about image resolution, and the math is identical for pixel-to-physical-unit conversions. For this converter, entering your value as either DPI or PPI works correctly.
My image is 72 DPI โ€” is that too low to print?
Almost certainly yes, unless you're printing very large and viewing from a distance (like a billboard). At 72 DPI, a 1000-pixel image prints at about 13.9 inches โ€” which at true print quality you'd want to be at 300 DPI, requiring 4166 pixels. If your image is already 72 DPI from a screen capture or web source, check the actual pixel dimensions first โ€” it might have enough pixels for the print size you need at 300 DPI even if the metadata tag says 72.
How many pixels is an A4 page at 300 DPI?
An A4 page is 210 ร— 297 mm (8.27 ร— 11.69 inches). At 300 DPI that works out to 2480 ร— 3508 pixels. At 150 DPI it's 1240 ร— 1754 pixels. These are the canvas dimensions you'd use when setting up a document in Photoshop or Illustrator for print output at those respective resolutions.