Why Is My Image File So Big?
Usually it's one of four things, and the first one accounts for most of it. Here's how to diagnose it in ten seconds.
An image is too heavy — for an upload form, an email, a page that loads slowly. The instinct is to reach for a compressor. Often that's the wrong first move, because compression treats the symptom of whichever of these four things is actually going on.
1. Too many pixels (usually this one)
The most common cause by a distance. A modern phone shoots photos several thousand pixels wide. If that image is displayed in a 600px column, or uploaded as a 200px avatar, you're storing many times more pixels than anyone will ever see.
Compressing an oversized image is the worst of both worlds — you degrade detail you weren't showing, and the file is still heavy. Resize first. Resize Image to roughly the dimensions it's displayed at, and the file often drops far enough that nothing else is needed. Our resizing guide covers what to target, and the percentage version explains why halving the dimensions quarters the pixels.
How to tell: check the pixel dimensions against where it's going. Wider than about twice its display width? This is your problem.
2. Wrong format for the content
The second-biggest, and the most satisfying to fix because the savings are enormous and cost nothing.
A photograph saved as PNG is the classic. PNG is lossless — it cannot discard photographic detail — so it stores every subtle colour variation faithfully and the file balloons. The same photo as JPG can be a fraction of the size with no visible difference. PNG to JPG fixes it; our guide to that conversion covers the one case where you shouldn't.
It runs the other way too: a screenshot of text saved as JPG is both fuzzy and often no smaller than the PNG would have been, because sharp edges are exactly what JPG handles worst.
How to tell: photograph in a PNG, or text and flat colour in a JPG? That's a format mismatch. Rule of thumb — photos want JPG, graphics and screenshots want PNG, and WebP beats both for the web.
3. No compression applied
Some formats barely compress at all. BMP is the extreme case — essentially raw pixels, which is why a BMP can be ten times a JPG of the same picture. Exports at maximum quality from design tools are a milder version of the same thing.
This is where a compressor genuinely is the answer: Compress JPG for photos, Compress PNG for graphics. Our JPG guide covers where the quality line sits.
How to tell: sensible dimensions, sensible format, still heavy? It's under-compressed.
4. It's an animation
A GIF is close to a stack of full frames — it can skip unchanged regions between them, but it has no motion compression in the way video does, and only 256 colours per frame. So a few seconds of animation can outweigh a page of photos: it's structurally inefficient, not badly saved. Our guide to shrinking a GIF covers what can be done, and it's honest that a video is the real fix.
The order that works
- Resize to the dimensions you actually need.
- Fix the format if it's mismatched to the content.
- Compress what's left.
Doing it in that order means each step works on a sensible input, and you'll usually stop before step three. Reversing it — compressing hard, then discovering you're storing a 4000px image as a PNG — is how people end up with a small, ugly file.
Two things that are not on the list, because they don't work: raising the DPI (it's a metadata label, and our DPI explainer covers why it changes nothing on screen) and stripping metadata (EXIF is measured in kilobytes at most — worth removing for privacy, never for size).
If you're chasing a specific number rather than general lightness, skip the diagnosis and target it directly: Compress Image to 100KB and its siblings work backward from your limit, and our guide to exact size limits explains what they do to get there — including that they'll reduce your dimensions themselves if quality alone won't reach it.
FAQ
What's the fastest way to shrink an image?
Resize it. Halving the width and height quarters the pixel count, which usually does more than any compression setting.
Should I compress or resize?
Resize first, compress second. Compressing an oversized image degrades detail you weren't displaying anyway.
Why is my screenshot so large?
If it's a screenshot of a photo saved as PNG, it's a format mismatch — convert it. If it's a screenshot of text, PNG is right; it's probably just large in pixels.