"This image is too large" — but is it the file size (MB), the dimensions (pixels), or the print resolution (DPI)? These three concepts are constantly conflated, leading to countless wrong turns when processing images.
File size, pixel dimensions, and resolution are three independent dimensions of an image. Once you understand their relationship, you can precisely determine "what to reduce" and "how to reduce it."
01 File Size (KB/MB): How Much Storage Space
File size refers to the bytes an image file occupies on disk, usually expressed in KB (kilobytes) or MB (megabytes). 1 MB = 1024 KB. This is the "size" you see in your file manager.
File size is determined by three factors: total pixel count, color depth per pixel, and compression algorithm efficiency. A 4000×3000, 24-bit uncompressed image would theoretically be 36 MB — after JPG compression it might be just 2–5 MB.
Email attachment limits, web page load speed, platform upload rules — these all care about file size (KB/MB), not pixel dimensions.
02 Pixel Dimensions (Width × Height): How Many Dots
Pixel dimensions describe how many pixels make up an image. For example, 1920×1080 means 1920 pixels wide and 1080 pixels tall — roughly 2.07 million pixels (2 MP) total.
Pixel dimensions determine how large an image can display on screen (at 100% zoom). A 1920×1080 image exactly fills a 1080p monitor. If the image only needs to display in a 400px-wide area, generating it at 1920px wide is wasteful.
03 Resolution (DPI/PPI): Dots Per Inch for Print
DPI (Dots Per Inch) and PPI (Pixels Per Inch) technically differ (DPI for printers, PPI for screens), but are often used interchangeably. They indicate how many pixels/dots fit per inch.
Resolution only matters for printing. The same 3000×2000 image at 300 DPI prints at 10×6.7 inches; at 72 DPI it prints at 41.7×27.8 inches — but looks blurry. If you're displaying on screen only, DPI is entirely irrelevant.
Print materials recommend 300 DPI; screen display needs only 72–96 PPI. Changing DPI doesn't alter file size or pixel count — it's just a print-hint parameter.
04 How They Relate in Practice
Pixel dimensions × color depth = raw data volume. Raw data compressed by an algorithm = file size. Resolution (DPI) is just a printout annotation — it doesn't affect the other two.
Example: you need a blog image displayed at 800px wide. Your image only needs to be 800×(proportional height), compressed with JPG quality 80, ending up at perhaps 80–150 KB. That's a "just right" image.
FAQ
Does changing DPI make an image sharper?
No. Changing DPI only alters the print scaling ratio — it doesn't add any pixel data. A blurry 500×500 image changed from 72 to 300 DPI looks exactly the same on screen.
Why are phone photos often 5 MB+?
Because modern phone cameras have very high pixel counts (12 MP to 100+ MP), combined with high default quality settings, producing large files. HEIF/HEIC format is smaller but less compatible than JPG.
How good is a 1 MB image roughly?
A medium-quality 1920×1080 JPG photo is roughly 200–500 KB. A 1 MB JPG is typically a 2000–3000px wide high-quality photo. That's on the large side for web — compressing under 500 KB is recommended.
Enlarging images gets blurry — does shrinking too?
Shrinking typically doesn't cause blur — it actually looks sharper due to increased pixel density. However, shrinking to very small sizes (below ~50×50) loses detail because there are simply too few pixels.
What is "color depth" and how does it affect file size?
Color depth is how many bits are used to store color information per pixel. 8-bit = 256 colors, 24-bit = 16 million colors (8-bit × 3 RGB channels), 32-bit adds an alpha transparency channel. Higher bit depth means larger files.
Try the Tool Now
File size, pixel dimensions, and resolution are three independent dimensions of an image. Once you understand their relationship, you can precisely determine "what to reduce" and "how to reduce it."