How cropping works
Cropping keeps a rectangle of the original image and discards the rest — unlike resizing, the kept pixels are untouched, so there is no quality loss. You define the rectangle with a top-left corner (X, Y) and a size (width, height), measured in pixels from the image's top-left origin.
The tool draws that source rectangle onto a canvas sized exactly to the crop and exports it as a PNG. Any rectangle that runs past the image edge is clamped so the crop never includes blank pixels.
Worked example
Take a 200 × 200 square from the centre of a 1000 × 800 image:
Tips and privacy
The pixels inside your crop are copied exactly, so cropping is lossless. To get a perfectly square avatar, use equal width and height; to follow a known ratio like 16:9, keep width ÷ height = 1.778. Because the crop is performed on the canvas in your browser, the image is never uploaded — it is safe for private screenshots and unreleased artwork.