How pixel-to-inch conversion works
Pixels describe digital resolution, while inches describe physical size. DPI bridges the two. If you know the number of pixels in one direction and the chosen dots-per-inch value, you can calculate the physical width directly and then derive centimetres, millimetres, and points from the same measurement.
This is why a screen export and a print proof may use the same source image but report different physical outcomes. The one-axis pixel measurement stays the same, but the assumed DPI changes the size on paper or in a print workflow.
inches = pixels / DPI
Core relationship between digital pixel count and physical width.
centimetres = inches × 2.54
Converts the physical inch value into metric length.
points = inches × 72
Useful for typography and print-layout planning.