The short version
Image resolution usually means pixel dimensions: the number of pixels across and down an image. A 4000 × 3000 image contains 12 million pixels, or 12 megapixels.
What matters most
- Pixel dimensions describe available samples, not guaranteed sharpness.
- Megapixels equal width × height divided by one million.
- Print size also depends on pixels per inch; screen display depends on CSS sizing and device density.
How to apply it
- Read the file's width and height in pixels.
- Multiply them to find total pixels.
- Divide by one million for megapixels.
- Compare the dimensions with the intended display or print requirement.
Reference table
| Dimensions | Megapixels | Example use |
|---|---|---|
| 1280 × 720 | 0.92 MP | Small HD media |
| 1920 × 1080 | 2.07 MP | Full HD display |
| 3000 × 2000 | 6 MP | Photo and moderate print |
| 4000 × 3000 | 12 MP | Detailed photo and larger print |
Use exact dimensions and units in production notes; familiar labels can describe more than one standard.
Common mistakes to avoid
- Treating DPI metadata as additional pixels.
- Assuming two images with equal dimensions have equal sharpness.
- Upscaling and expecting new authentic detail.
Continue with the right tool
Use a calculator to check the numbers against your own source and destination instead of relying on a generic preset.
Related guides
How to Find an Image's Resolution and Aspect Ratio
Check image width, height, megapixels and aspect ratio, then interpret whether the file is large enough for screen or print use.
Images and photosHow to Resize an Image Without Losing Quality
Resize images cleanly by preserving aspect ratio, choosing an appropriate resampling method and avoiding unnecessary recompression.
Images and photosHow to Resize an Image Without Pixelation
Prevent blocky edges and soft detail by understanding source pixels, enlargement limits, resampling and final viewing size.
Frequently asked questions
Is resolution the same as megapixels?
Megapixels summarize total pixel count, while dimensions show how those pixels are arranged.
Does a larger file always have higher resolution?
No. File format, compression and image complexity strongly affect bytes.
Can resolution be too high?
Yes for a workflow: unnecessary pixels increase storage, transfer and processing without visible benefit.