Crop an Image — Free & Private
Cut a photo down to just the part you want. Drag and resize the selection box over your image, then crop — precise, instant, and entirely in your browser with nothing uploaded.
In short: drop an image below, drag the selection box over the part you want to keep, drag the corner dot to resize it, and press Crop. The cropped image is rendered on your device and downloads straight away — nothing is uploaded, and you choose whether the result is JPG, PNG or WebP.
- Is it free, and is there a watermark?
- Yes, free, and no. No signup, no account, no daily limit and nothing added to the picture.
- Is my photo uploaded anywhere?
- No. The crop is done by your browser’s own canvas, so the file never leaves your device. That also means there is no size limit imposed by a server.
- Will cropping lose quality?
- The pixels you keep are untouched. What can cost quality is the re-encoding, so the output format is yours to choose — see the format section below.
- Can I crop to a square or a 16:9 shape?
- Not with a preset — the box is freeform and you drag it to the shape you want. There is no ratio lock, and the capabilities table says so rather than implying one.
- Can I crop several images at once?
- No, one at a time. Cropping is a decision about a particular picture, so a batch would mean applying one rectangle to images that do not share a subject.
- What formats can I crop?
- Anything your browser can open — JPG, PNG, WebP, GIF, BMP and AVIF among them. The output can be JPG, PNG or WebP whatever went in.
How to Crop an Image
Drop the photo onto the tool, or click to browse and select it.
Drag the selection box over the area you want to keep.
Drag the corner dot to make the selection larger or smaller.
Click Crop, then download just the selected area as a PNG.
Why Use Convertlo?
- 🔒 100% Private — the image never leaves your browser
- 🆓 Free forever — no account, no watermark, no limits
- 🎯 Precise selection — drag and resize to the exact area
- 🖼️ Any format — JPG, PNG, WebP, and GIF
- ✨ Full quality — the cropped area keeps its original pixels
- 📱 Touch friendly — drag the box on a phone or tablet
Features
100% Private
No server, no upload — your image stays on your device.
Drag & Resize
A precise, movable selection box.
Live Preview
See exactly what you'll keep.
Full Quality
Cropped pixels are untouched.
Any Format
JPG, PNG, WebP, GIF supported.
Touch Friendly
Works with touch on phones and tablets.
Which output format to choose
Cropping itself is lossless: the pixels inside the box are copied out untouched. What can cost quality is what happens next — the kept pixels have to be written back into a file, and that encoding is a real choice with real consequences.
This tool used to write PNG and nothing else, which is the worst possible default for the commonest input. PNG is lossless, so it stores every pixel of a photograph exactly — and a photograph has no flat areas to compress, so a 2 MB JPEG cropped to half its size could come back larger than the original. Nothing was gained: the JPEG’s compression artefacts were preserved in perfect detail.
So the output is now yours to pick, and Match the original is the default:
- JPG — right for photographs. Small, universally accepted, and the quality loss from one re-encode at 92% is invisible next to what the camera already did. It cannot store transparency.
- PNG — right for screenshots, logos, diagrams and anything with transparency or flat colour. Lossless, and on that kind of image it is also smaller than JPEG as well as sharper.
- WebP — smallest of the three at the same quality, keeps transparency, and every current browser reads it. Older software may not.
One quirk worth knowing, because it is in the HTML specification rather than being a bug: if you ask a browser for a format it cannot write, canvas.toBlob hands back a PNG with no error at all. So this page checks what it actually got and names the file after the real bytes — never a .webp that is secretly a PNG — and tells you when it had to substitute.
Cropping strips the metadata — including GPS
A cropped image comes out with no EXIF metadata: no camera model, no timestamp, no lens data, and no GPS coordinates. That is not a feature we added; it is a property of drawing an image onto a canvas and reading it back, which is what every browser-based cropper does.
It is worth knowing in both directions. If you are about to post a photograph publicly, losing the GPS tag is a good thing — phone photos routinely carry the exact location they were taken, and cropping here removes it. If you are cataloguing photographs and rely on capture dates, the crop will cost you them, so keep the originals. To strip metadata without re-encoding the picture, use Metadata Remover, which removes the tags and leaves the image data alone.
Why do it in the browser at all?
Every free cropper that ranks for this does the same thing your browser can already do, and uploads your photograph to do it. iLoveIMG, Fotor, Adobe Express, Canva and img2go all send the file to a server, which means an upload wait proportional to the file, a size cap set to protect their bandwidth rather than your needs, and a copy of your picture somewhere you cannot see. Several of the better editors also want an account before you can download.
None of that is necessary. Cropping is a rectangle copy — the single cheapest operation in image editing — and the browser has had a fast, colour-accurate implementation of it for over a decade. This page uses that: the file is opened on your device, the crop is drawn on your device, and the download comes from memory. There is no upload step, so there is nothing to wait for, no cap, and nothing of yours to delete afterwards.
The honest cost is that a server-based editor can offer things a small page will not: layers, healing brushes, content-aware fill. If you want those, an editor is the right tool. If you want a rectangle out of a picture, this is faster and the picture stays with you.
Capabilities at a glance
What this tool does and does not do, stated plainly. The “No” rows are the point, not an omission.
| Capability | Supported | Detail |
|---|---|---|
| Input | ||
| JPG, PNG, WebP, GIF, BMP, AVIF | Yes | Anything the browser can decode. |
| HEIC from an iPhone | No | No browser decodes HEIC. Convert it with HEIC to JPG first. |
| File size limit | No | There is no server to protect, so nothing is capped by us. |
| Several images at once | No | One at a time — a crop is a decision about a particular picture. |
| Cropping | ||
| Freeform selection box | Yes | Drag to move it, drag the corner to resize. |
| Fixed aspect ratios (1:1, 16:9…) | No | The box is freeform; there is no ratio lock. |
| Rotate or straighten | No | Use Rotate Image first. |
| Flip | No | Use Flip Image. |
| Resize after cropping | No | Use Resize Image afterwards. |
| Zoom into the preview | No | The preview is fitted to the panel. |
| Output | ||
| Keep the original format | Yes | The default: a JPEG stays a JPEG, a WebP stays a WebP. |
| Choose JPG, PNG or WebP | Yes | Whatever went in. |
| Lossless PNG output | Yes | Every kept pixel is bit-for-bit the original. |
| Transparency preserved | Yes | When the output is PNG or WebP. A JPEG cannot store it. |
| Metadata and EXIF kept | No | The canvas drops it — which also strips GPS coordinates. See below. |
| Watermark | No | Nothing is added to the picture. |
| How it runs | ||
| Nothing is uploaded | Yes | The crop happens on your device and is never sent anywhere. |
| Signup or daily limit | No | There is no account and no quota. |
| Offline use | No | The page loads from the network first. |