Image Crop Tool
Drag and resize to crop any image — circle, square, 16:9, portrait, or free selection. Runs entirely in your browser. No upload, no account.
How to Crop an Image
Interactive crop in six steps — no design software needed.
PNG to preserve the transparent background.The Logic Behind This Tool
How the crop box and canvas rendering work under the hood.
ctx.arc(cx, cy, radius, 0, 2π) defines a circular clipping path before drawing the image. Any pixels outside are discarded. The alpha channel in PNG stores the transparency.h = w / ratio during every resize event, keeping both dimensions locked in proportion.Frequently Asked Questions
Common questions about cropping images online.
A circular crop creates a shape where the area outside the circle has no color — it's transparent. JPEG does not support transparency (alpha channel). If you saved a circular crop as JPEG, the transparent area would be filled with a white (or black) background, turning the circle into a square image with a white backdrop. PNG supports full alpha transparency, so the circular mask is preserved correctly. WebP also supports transparency and can be used as an alternative.
Yes. The crop box is displayed at the image's scaled-down size (to fit your screen), but the actual crop calculation uses the original image's natural pixel dimensions. A 4000×3000 pixel photo displayed at 800×600 on screen will produce a full-resolution crop output. The display scale factor is applied inversely when computing the canvas draw coordinates.
Yes. After downloading a crop, you can change the shape or crop box position and click "Crop Image" again to produce a different crop of the same image. Each crop is independent. The original image in memory is not modified — you're always cropping from the unmodified source.
The rule of thirds is a composition principle from photography and art. It divides the frame into a 3×3 grid and suggests placing the main subject at one of the four intersection points (where the lines cross) rather than dead center. This tends to produce more dynamic and balanced images. The grid overlay in the crop box is a visual guide — it doesn't affect the crop itself, just helps you position it.
Most platforms (Instagram, Facebook, Twitter/X, LinkedIn) display profile photos as circles, so any square (1:1) source image looks best — the platform applies the circular mask itself. Use the Square (1:1) mode, center your face in the crop box, and export as JPEG or PNG. For a pre-cropped circle (e.g. for a design or presentation), use Circle mode and export as PNG so the transparent background is preserved.
The crop preview is instant because the tool only moves CSS positions — no pixels are reprocessed until you click "Crop Image." The actual crop operation processes pixels once via Canvas. For very large images (20+ megapixels), the crop may take 1–2 seconds depending on your device's CPU. The result is still your full-resolution crop — no downscaling occurs unless you explicitly resize afterward.
Free mode removes all aspect ratio constraints, letting you drag the crop box to any rectangular shape independently. It also shows additional edge handles (top, bottom, left, right) in addition to the four corner handles, so you can resize along a single axis without affecting the perpendicular dimension. Use Free mode when you need an exact pixel region rather than a proportional crop.