How to Check Image Size, Dimensions and Resolution
Read file size, pixel dimensions, megapixels, aspect ratio and estimated print size before editing.
Checking an image before editing prevents unnecessary quality loss. A portal may reject a file because it is 3.2 MB, because it is only 300 pixels wide, or because it is the wrong shape. Those are different problems.
A property check is non-destructive: it tells you what the file is now so you can choose the smallest necessary change.
Read the byte size correctly
File explorers may round values, while upload systems often check exact bytes. A file displayed as 100 KB could be slightly above a strict 100,000-byte limit. Use the exact result shown by the checker and aim a little below the maximum.
Remember that MB describes storage only. It says nothing about the shape or whether small text is readable.
Check width, height and megapixels
Width × height gives the pixel grid. A 600 × 600 profile image is square and contains 0.36 megapixels. A 4000 × 3000 phone photo contains 12 megapixels and may be unnecessarily large for a web form.
Minimum dimensions protect readability; maximum dimensions protect processing and storage. Follow both when stated.
Use ratio to predict cropping
A 4:3 image does not fit a 1:1 slot without either cropping or empty space. Knowing the ratio before resizing prevents accidental stretching.
Crop to the required ratio first, then resize to exact pixels. This separates composition decisions from resolution decisions.
Treat print size as an estimate
The checker can estimate physical size at common DPI values. This helps plan prints, but paper, printer, viewing distance and image sharpness still matter.
For formal print work, confirm requirements with the printer rather than relying only on metadata.
Example reading
| Property | Example | Meaning |
|---|---|---|
| File size | 842 KB | Storage and upload limit |
| Dimensions | 2400 × 1600 | Digital width and height |
| Megapixels | 3.84 MP | Total pixel count |
| Aspect ratio | 3:2 | Image shape |
Final checklist
Use the exact file you will submit
Check both bytes and pixels
Confirm the accepted format
Compare ratio with the destination
Save a record for batch work when needed
Questions people ask
Can two identical-looking images have different sizes?
Yes. Format, metadata and encoding settings can differ.
Does the checker upload the image?
It is designed to decode and inspect it in the browser.
Why does print size change when DPI changes?
The same pixels are distributed over a different physical area.
This article explains the current DocPixel interface and known trade-offs. Requirements from a receiving institution or software provider take priority.