Tested tool guide
Tested browser tools
Checked August 16, 2026
What Image Dimension Checker does, with a checked example
Drop in one image or several at once and the tool reads each file's header to report pixel dimensions, DPI, color depth, and byte size together in one pass, so a mixed batch of PNGs, JPEGs, GIFs, and WebPs comes back comparable. Parsing happens locally in the browser; no file is uploaded. The thing users most often get wrong is DPI: it is a print hint stored in metadata, not a property of the pixels. Two files with identical 1200x800 pixels can read 72 DPI and 300 DPI, and editing the tag never changes the pixel count.
Worked example
A concrete input and expected output from the current implementation.
Input
A 64x64 PNG saved from a graphics editor with 8-bit RGBA color and a 72 DPI print tag (2835 pixels per meter).
->
Expected output
Width 64 px, height 64 px, DPI 72, color depth 32-bit (RGBA), plus the file's byte size as read from disk. Content, sharpness, and compression are not reported.
PNG headers store dimensions and a pixels-per-meter tag: 2835 ppm converts to 72 DPI (2835 / 39.37 = 72.0). Four 8-bit channels add up to 32-bit depth. File size is read from the actual file and cannot be derived from the other fields, since it depends on the compressed content.