b2KIT

DPI Converter

Change image DPI/PPI resolution for print-ready output without resizing pixels.

Tested tool guide Tested browser tools Checked August 16, 2026

What DPI Converter does, with a checked example

DPI Converter changes the resolution value associated with an image while preserving its pixel width and height. It records the requested density as image metadata instead of resampling the pixel grid. Software that honors this metadata may then assign the image a different physical size in a print layout. The common surprise is that a higher DPI or PPI value does not create pixels, recover detail, or improve a low-resolution source.

Worked example

A concrete input and expected output from the current implementation.

Input

A 600 x 300 pixel image; target resolution: 300 DPI

Expected output

An image that remains 600 x 300 pixels with its resolution set to 300 PPI. Its metadata-implied print size is 2 x 1 inches.

Physical size is calculated by dividing each pixel dimension by the pixel density. Here, 600 / 300 = 2 inches and 300 / 300 = 1 inch.

How the result is produced

1

Resolution metadata

The requested density is stored as resolution metadata while the image retains its existing pixel width and height. A 3000 x 2400 pixel image therefore remains 3000 x 2400 pixels after changing its resolution value. The conversion affects how a physical size can be inferred, not how many image samples are available.

2

Print-size relationship

Software that respects the density value can calculate print dimensions as pixels divided by PPI. Raising PPI while retaining the same pixel dimensions reduces the implied size in inches; lowering PPI increases it. To convert that result to centimeters, multiply the number of inches by 2.54. A layout application can still override the inferred size.

Good uses

  • Correct the resolution metadata of a photo that reports 72 PPI despite having enough pixels for the intended print size.
  • Prepare an image for a submission workflow that requests a particular DPI or PPI value without changing its pixel crop.
  • Set a predictable default physical size before placing a raster image into a print-layout document.

Limits and checks

  • Changing the density value does not upscale the image, add pixels, or restore missing detail.
  • The calculated print size is an interpretation of metadata, not a command that every viewer, editor, or printer must follow.
  • DPI technically describes printer dots, while PPI describes image pixels; image tools often use DPI as the interface label for pixel-density metadata.

Common questions

Will setting an image to 300 DPI make it print sharper?

No, not by itself. Sharpness depends on how many source pixels are distributed across the final printed area, along with the printer and print process. Changing only the stored density leaves the available pixels unchanged. It can produce an appropriate default print size, but it cannot repair insufficient source resolution.

Why are the image dimensions unchanged after conversion?

That is the intended result. The converter changes the density associated with the image, not its width or height in pixels. The difference becomes relevant when software uses that density to infer inches or centimeters. If the receiving application ignores resolution metadata or assigns its own size, the image may appear unchanged there.

References and verification

The example and behavioral notes were checked against the browser implementation. Standards and primary references below define the relevant format, formula, or platform behavior.

Related Tools