Image Compressor

DPI checker & changer

Read the DPI of any JPEG or PNG. Rewrite JPEG DPI to any value between 1 and 9999 without re-encoding — pixel data stays untouched, image quality is unchanged.

What DPI actually means

DPI (dots per inch) is a metadata hint that tells print software how large to render the image on paper. It does not change the pixel data. A 3000×2000 pixel image is 3000×2000 pixels regardless of DPI — what changes is the print size:

  • At 72 DPI the same image prints at 41.7″ × 27.8″ (a huge poster)
  • At 300 DPI the same image prints at 10″ × 6.7″ (a small photo)

That's why "my print shop says my file is too low DPI" is usually a metadata problem, not a resolution problem — the file has enough pixels, the JPEG header just doesn't declare them at the print-ready density.

How this rewriter works

JPEGs store DPI in the JFIF marker (APP0 segment, bytes 11–15). The tool locates that segment in your file, patches the density fields to your target DPI, and writes the file back out. Because we only touch metadata bytes — never the compressed image data itself — there is zero quality loss. The output is byte-identical to the input except for the four density bytes.

Common DPI targets

  • 72 DPI — screen / web default (irrelevant for web display; only matters for print)
  • 96 DPI — Windows default screen DPI
  • 150 DPI — draft print quality; posters viewed from > 1 metre
  • 200 DPI — decent print quality; adequate for most flyers
  • 300 DPI — standard photo/print quality; the industry default for anything held in hand
  • 600 DPI — high-end fine art print and typography-heavy print

Related tools

Your images stay on your device. Nothing is uploaded.