Image Resizer & Compressor

Drop an image hereor click to choose a file

The image is processed on your device. Nothing is uploaded.

Resize images to exact pixel dimensions or by percentage, then compress them. The original and result sizes are shown side by side so you can see exactly what you saved.

Why file size falls faster than you expect

Image data scales with area, not width. Halving both dimensions leaves a quarter of the pixels, so a 4000 × 3000 photo reduced to 2000 × 1500 drops from 12 million pixels to 3 million before any compression is applied at all.

This is why resizing beats compressing for web images. Pushing JPEG quality from 85 down to 60 might save 40 percent and introduce visible artefacts. Halving the dimensions saves 75 percent and, if the image was oversized for its slot, looks identical.

Common target sizes

UseLongest sideNotes
Thumbnail400 pxGrid and list previews
In-article image1200 pxCovers most layouts
Full-width hero2400 pxRetina-ready at 1200 CSS px
Email attachment1600 pxReadable, stays under limits

Frequently asked questions

What is the difference between resizing and compressing?

Resizing changes the pixel dimensions — a 4000 pixel wide photo becomes 1200 pixels wide, and the discarded pixels are gone. Compressing keeps the dimensions and reduces how precisely each pixel is stored. Resizing usually saves far more space, because file size scales with area: halving both dimensions removes about three quarters of the data.

What size should images be for a website?

Match the display size, then double it for high-density screens. A full-width hero at 1200 CSS pixels wants a 2400 pixel source; a thumbnail shown at 300 pixels wants 600. Serving a 4000 pixel photo into a 300 pixel slot wastes bandwidth on every single page load and is one of the most common causes of a slow site.

Will resizing make my image blurry?

Scaling down is safe — the browser averages pixels together and the result stays sharp. Scaling up cannot invent detail that was never captured, so an enlarged image will always look softer than the original. If you need a larger image, go back to the original file rather than enlarging a small copy.

Does this keep the aspect ratio?

By default yes — enter a width and the height follows automatically. Unlock the ratio if you deliberately need to stretch to fixed dimensions, but be aware that any non-proportional change will visibly distort faces and straight lines.

Related tools