Image Cropper

Media Client-side image crop cropper cut trim region selection

This tool runs entirely client-side, in your browser: your data is never sent anywhere.

What it does

This tool lets you crop an image: draw a selection box directly on the picture with your mouse (or finger on touch devices), adjust it, and export only that region as a new image. Everything runs locally in your browser — no image is ever uploaded.

Try it

How it works

  1. After choosing an image, click and drag anywhere on the picture to draw a rectangular selection.
  2. The selection is shown as a dashed overlay; drawing a new one replaces the previous selection.
  3. Clicking Crop selection maps the selection's on-screen coordinates back to the image's real (natural) resolution, draws just that region onto a <canvas>, and exports it with canvas.toBlob() in your chosen format.
  4. The cropped result can then be downloaded.

Notes