UtilitiesTools

Image Cropper

Crop any image to a precise area or a fixed aspect ratio entirely in your browser. Drop a photo or screenshot, drag the touch-friendly crop box over the part you want to keep, optionally lock it to 1:1, 4:3, or 16:9, and download the result. The picture is drawn to a local canvas and is never uploaded, so private screenshots and scans stay on your device.

Drop an image here

or choose a file

🔒 Cropped on your device with a canvas. Never uploaded.

What is the Image Cropper?

The Image Cropper is a free, browser-based tool that lets you cut an image down to exactly the part you want to keep. Add a photo or screenshot, drag a crop box over the area that matters, optionally lock it to a fixed aspect ratio like 1:1 or 16:9, and download the trimmed result. Every step runs on your own device — the picture is drawn to a local canvas and is never uploaded, stored, or logged.

How to use it

  1. Add an image — tap or click the drop zone to choose a file, or drag and drop one onto it.
  2. A crop box appears over the preview. Drag the box to move it; drag any corner handle to resize it.
  3. Pick an aspect ratio (Free, 1:1, 4:3, 16:9, 3:4, or 9:16) if you need a fixed shape; the box stays locked to that ratio while you adjust it.
  4. Choose a save format, then tap Crop & download. Answer in, answer out, done.

The method behind it

Cropping is a coordinate operation, not a filter. When you place the crop box, the tool records its position and size in the preview, then scales those numbers back up to the image's natural pixel grid so nothing is lost on small screens. It uses the canvas drawImage(source, sx, sy, sw, sh, 0, 0, sw, sh) call to copy only the selected rectangle of source pixels into a fresh canvas the exact size of your selection. The kept pixels are untouched — there is no resampling of the region you keep — and the canvas is exported with toBlob() so the download is a real image file, not a screenshot.

Aspect-ratio presets work by constraining the box geometry: when a ratio is active, resizing one side automatically derives the other so width ÷ height always equals 1 for a square or 16 ÷ 9 for a widescreen frame.

Examples

Common use cases

Cropping social-media avatars and banners to the platform's required shape; trimming screenshots before pasting them into a doc or ticket; making square product shots for a store listing; cutting a 9:16 vertical frame for a phone wallpaper or Reel; removing dead space and bystanders from a photo; and preparing ID or document scans where you must not send the file to a third-party server.

Why use this one

Most online croppers upload your file before they let you touch it. This one does not: the image is loaded into a canvas in your browser and the crop happens locally, so private screenshots, ID scans, and client mockups never leave your device. The crop box is built touch-first — you can move and resize it with one finger on a phone — and the aspect-ratio presets snap to common shapes so you do not have to eyeball a square. There is no watermark, no sign-up, and the kept region exports at full source resolution.

It is part of a small image toolkit. To change pixel dimensions instead of trimming, use the Image Resizer; to shrink a file's weight, try the Image Compressor; to swap formats, reach for PNG to JPG; and to embed an image inline, use Image to Base64.

Frequently asked questions

Is my image uploaded to a server when I crop it?

No. The image is loaded into a canvas inside your browser and the crop happens entirely on your device. Nothing is uploaded, stored, or logged, so private screenshots, ID scans, and client mockups stay with you.

Can I crop to an exact aspect ratio like 1:1 or 16:9?

Yes. Pick a preset (1:1, 4:3, 16:9, 3:4, or 9:16) and the crop box locks to that ratio while you drag and resize it. Choose Free to crop to any shape.

Does cropping reduce the quality of my photo?

Cropping only removes the area outside your selection; the pixels you keep are exported at full source resolution. There is no resampling or compression of the kept region unless you save as JPG, which applies the format's own compression.

Will cropping work on my phone?

Yes. The crop box is built for touch: drag the box with one finger to move it and drag a corner handle to resize. The layout is single-hand friendly and works on small screens.

Which image formats can I crop and download?

You can crop any image your browser can open, including PNG, JPG, WebP, and GIF. The cropped result downloads as a PNG by default to keep transparency, with a JPG option for smaller photo files.