🖼 Image Cropper

Crop to a locked aspect ratio and set the exact output pixels — in px, inches, cm or mm at any DPI. Warns before it enlarges. Runs in your browser.

Free No Signup Required Browser-Based
🖼

Choose an image, or drop it here

Cropped in this tab — nothing is uploaded.

What Image Cropper Does

Cropping and resizing solve different problems and people reach for the wrong one constantly. Resizing keeps the whole picture and changes its pixel dimensions; if the new dimensions are a different shape, the picture is stretched. Cropping changes the shape by discarding what falls outside the box, and what remains keeps its proportions exactly. A 4:3 image from a 3:2 photo can only come from a crop — resizing to those numbers would squash it by about 11%.

An aspect ratio is a shape, not a size. 4:3 describes 800 × 600 and 4000 × 3000 equally well, and knowing you have cropped to 4:3 tells you nothing about whether the file will print. That is why the output size is set separately here: choose the shape with the crop box, then choose the size in pixels, inches, centimetres or millimetres at a resolution you pick.

The number that decides whether the result is any good is the one nobody shows you: how many megapixels are actually in the selection. Drag a small box on a large photo and ask for a 300 DPI print and you are enlarging a crop — the extra pixels are interpolated and the print is soft. The selection and the request are shown side by side, in megapixels, before you commit.

The crop rectangle is tracked in the source image’s own pixels rather than in display pixels. That sounds like an implementation detail and is not: a box tracked on screen rounds through the display scale on every drag, so the numbers drift by a pixel or two as you nudge it — which is exactly the off-by-one that fails a form demanding 413 × 531.

How to Use Image Cropper

  1. Add an image, or drop it onto the box
  2. Pick a shape — 4:3, 1:1, 16:9, 35×45 mm — or type any two numbers as a ratio
  3. Drag the box to choose the part of the picture you want; the shape stays locked
  4. Optionally set an exact output size in pixels, inches, cm or mm, then crop and save

Formula Used by Image Cropper

The largest crop of a given shape that fits

if (imageW ÷ ratio) ≤ imageH then w = imageW, h = imageW ÷ ratio; otherwise h = imageH, w = imageH × ratio

ratio
the wanted shape as width ÷ height — 4:3 is 1.333, 9:16 is 0.5625
w, h
the crop rectangle, then centred in the image

Worked example

A 4032 × 3024 phone photo (4:3) cropped to 16:9.

  1. ratio = 16 ÷ 9 = 1.7778
  2. Try full width: 4032 ÷ 1.7778 = 2268, which is ≤ 3024, so width leads.
  3. Crop is 4032 × 2268, centred: y = (3024 − 2268) ÷ 2 = 378

Result: 4032 × 2268 at (0, 378). 25% of the image height is discarded — which is what changing shape costs.

How much you can enlarge before it shows

enlargement = outputPixels ÷ selectionPixels (per axis)

selectionPixels
the crop box measured in the original image, not on screen
outputPixels
what you asked the file to be

Worked example

A 900 × 1200 selection saved as a 2 × 2 inch ID photo at 300 DPI, i.e. 600 × 600.

  1. The selection is 3:4, the output is 1:1 — the shapes disagree, so lock the ratio to 1:1 first.
  2. With the shapes matched, a 900 × 900 selection to a 600 × 600 output is a reduction of 0.67×.
  3. Reduction is safe. The warning only appears the other way round.

Result: Fine. Had the selection been 400 × 400, the same output would be a 1.5× enlargement and visibly soft.

Ratios, and the pixel sizes people actually want from them

The shape is the crop; the pixels are the output size. Both are set separately here because they answer different questions.

RatioTypical useA common pixel size
1:1Profile pictures, Instagram posts1080 × 1080
4:3Classic photography, presentations, projectors1600 × 1200
3:4Portrait photographs, ID-adjacent shapes1200 × 1600
3:235 mm film, most DSLRs, 6×4 inch prints1800 × 1200 at 300 DPI
16:9YouTube thumbnails, widescreen displays1920 × 1080
9:16Stories, Reels, TikTok1080 × 1920
4:5Instagram portrait, Pinterest1080 × 1350
1:2Tall banners, the shape people type as "2×4"600 × 1200
7:57×5 inch prints2100 × 1500 at 300 DPI
5:410×8 inch prints3000 × 2400 at 300 DPI

Physical sizes to pixels, at the two resolutions that matter

The same shape at two resolutions is two very different files. 300 DPI is the print standard; 150 is enough for something viewed at arm’s length.

SizeRatioAt 150 DPIAt 300 DPI
2 × 2 in (ID photo)1:1300 × 300600 × 600
35 × 45 mm (ID photo)7:9207 × 266413 × 531
6 × 4 in (photo print)3:2900 × 6001800 × 1200
7 × 5 in (photo print)7:51050 × 7502100 × 1500
10 × 8 in (photo print)5:41500 × 12003000 × 2400
A4 (210 × 297 mm)≈ 1:1.4141240 × 17542480 × 3508

How to Read Your Result

Crop first, resize second — never the other way round

Resizing to a shape you do not have distorts the picture, and cropping afterwards cannot undo it. Getting the shape right with a locked crop box and only then choosing the pixel dimensions means the proportions are correct at every step and the only thing you ever lose is the area you deliberately cut away.

Reducing is free, enlarging is not

Scaling a selection down averages several real pixels into each new one and looks sharp. Scaling up has nothing to average and has to guess. Ten to twenty percent passes unnoticed; doubling is visibly soft. If the megapixel figures show you are enlarging, the honest fix is to select a larger area, not to accept a bigger number.

A shape is not a compliant ID photo

The 35 × 45 mm and 2 × 2 inch presets get the geometry right, and geometry is only part of what an ID photo has to satisfy. Head height within the frame, background colour, expression and lighting are usually specified too, and no cropper can check them. Use this for the shape and the pixels, and check the rest against the requirements you were actually given.

Limitations & Accuracy Notes

  • Rectangular crops only, aligned to the image. There is no rotation, straightening or free-angle crop here.
  • No zoom on the crop surface, so on a very large image the fine positioning is limited by how big the preview is on your screen. The numeric readout shows the exact selection in source pixels.
  • No face detection or automatic subject centring — you choose the area.
  • EXIF, GPS and colour profiles are dropped by the re-encode. The EXIF rotation is applied to the pixels first, so nothing comes out sideways.
  • The preview is downscaled for display, but the crop itself is always computed against the full-resolution image, so no quality is lost to the preview.

Frequently Asked Questions

How do I crop an image to a 4:3 ratio?
Choose 4:3 from the shape list, or type 4 and 3 into the ratio boxes. The crop box locks to that proportion, so dragging any handle keeps the shape — you are only choosing which part of the picture to keep. Any ratio works, including the ones people type as "2x4" or "3x4"; put the two numbers in and the box follows.
What is the difference between cropping and resizing?
Cropping throws away the parts of the picture outside the box and changes the shape without distorting what is left. Resizing keeps the whole picture and changes its pixel dimensions, which distorts it if the new shape does not match. If you need a 4:3 image from a 3:2 photo, you have to crop — resizing alone would squash it.
Can I set the exact pixel size as well as the shape?
Yes, and that is the step most croppers leave out. A ratio is a shape, not a size: 4:3 could be 800 by 600 or 4000 by 3000. Switch the output to "an exact size" and give the pixels, or give inches, centimetres or millimetres with a DPI and the pixels are worked out for you and written into the saved file.
Why does it warn me about enlarging?
Because if you select a small area and then ask for a large output, the extra pixels have to be invented by interpolation and the result is soft. The tool shows the megapixels in your selection against the megapixels you asked for, so you can see the gap before you commit rather than after you have printed it.
What is the rule-of-thirds grid for?
It divides the crop box into nine, and the convention is to place the subject on a line or an intersection rather than dead centre. It is a guide, not a rule, but it makes an off-centre crop look deliberate rather than accidental. Turn it off if it is in the way.
Can I crop to a passport or ID photo shape?
Yes — 35 by 45 mm and 2 by 2 inches are in the shape list, and any other size can be typed in. Bear in mind that the shape is only part of what an ID photo needs: head position, background and expression are usually specified too, and no cropper can check those. Use the shape here and then check the rest against your own requirements.
Are my images uploaded?
No. Both the crop and the encoding happen in the page. This site is a static export with no backend, so there is nowhere for an image to be sent.

References & Further Reading

By OnlineToolHubs Team • September 2026