react-cropper, react-easy-crop, and react-image-crop are React components that enable users to select and extract a portion of an image. These libraries abstract the complexity of canvas manipulation, coordinate calculations, and responsive UI interactions required for image cropping functionality in web applications. Each provides a different balance of features, API design, and underlying dependencies — with react-cropper wrapping the imperative Cropper.js library, while react-easy-crop and react-image-crop are built natively in React without external dependencies.
When your app needs to let users crop images — whether for profile avatars, product thumbnails, or content editing — picking the right React library can save hours of debugging canvas coordinates or wrestling with touch events. The three main contenders (react-cropper, react-easy-crop, and react-image-crop) each take a different approach to solving this problem. Let’s break down how they differ in architecture, capabilities, and developer experience.
react-cropper is a React wrapper around the popular Cropper.js library, which is written in vanilla JavaScript and uses direct DOM manipulation. This means it brings all of Cropper.js’s features but also its imperative style into your React app.
// react-cropper: Uses a ref to access the underlying Cropper instance
import React, { useRef } from 'react';
import Cropper from 'react-cropper';
import 'cropperjs/dist/cropper.css';
function ImageCropper({ src }) {
const cropperRef = useRef(null);
const getCroppedDataUrl = () => {
const imageElement = cropperRef?.current;
const cropper = imageElement?.cropper;
return cropper.getCroppedCanvas().toDataURL();
};
return (
<Cropper
src={src}
style={{ height: 400, width: '100%' }}
ref={cropperRef}
aspectRatio={1}
guides={false}
/>
);
}
react-easy-crop and react-image-crop are built entirely in React with no external dependencies. They manage state and rendering using React’s reactivity model, making them more predictable in React apps.
// react-easy-crop: Fully declarative, uses hooks
import React, { useState } from 'react';
import Cropper from 'react-easy-crop';
function ImageCropper({ imageSrc }) {
const [crop, setCrop] = useState({ x: 0, y: 0 });
const [zoom, setZoom] = useState(1);
const onCropComplete = (croppedArea, croppedAreaPixels) => {
// Use croppedAreaPixels to extract the image later
};
return (
<Cropper
image={imageSrc}
crop={crop}
zoom={zoom}
aspect={1}
onCropChange={setCrop}
onZoomChange={setZoom}
onCropComplete={onCropComplete}
/>
);
}
// react-image-crop: Simple controlled component
import React, { useState } from 'react';
import ReactCrop from 'react-image-crop';
import 'react-image-crop/dist/ReactCrop.css';
function ImageCropper({ src }) {
const [crop, setCrop] = useState({ aspect: 1 });
return (
<ReactCrop src={src} crop={crop} onChange={setCrop} />
);
}
Not all croppers are created equal when it comes to user-facing features.
react-cropper (via Cropper.js) and react-easy-crop. Not available in react-image-crop.react-cropper and react-easy-crop. Not supported in react-image-crop.react-easy-crop has excellent built-in support for pinch-to-zoom and drag. react-cropper works on mobile but feels less polished. react-image-crop supports basic touch dragging but no gestures.Here’s how you enable zoom and rotation:
// react-cropper with zoom and rotate
<Cropper
src={src}
zoomable={true}
rotatable={true}
scalable={true}
/>
// react-easy-crop with zoom and rotation
<Cropper
image={src}
zoom={zoom}
rotation={rotation} // e.g., 90
onZoomChange={setZoom}
onRotationChange={setRotation}
/>
// react-image-crop — no zoom or rotation props exist
<ReactCrop src={src} crop={crop} onChange={setCrop} />
All three libraries require you to use a <canvas> element to generate the final cropped image, but the APIs differ.
react-cropper gives you direct access to Cropper.js’s getCroppedCanvas() method:
const croppedCanvas = cropperRef.current.cropper.getCroppedCanvas();
const dataUrl = croppedCanvas.toDataURL('image/jpeg');
react-easy-crop doesn’t include image extraction — you must implement it yourself using the pixel coordinates from onCropComplete:
const createImage = url => new Promise((resolve, reject) => {
const image = new Image();
image.addEventListener('load', () => resolve(image));
image.addEventListener('error', error => reject(error));
image.setAttribute('crossOrigin', 'anonymous');
image.src = url;
});
const getCroppedImg = async (imageSrc, pixelCrop) => {
const image = await createImage(imageSrc);
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
canvas.width = pixelCrop.width;
canvas.height = pixelCrop.height;
ctx.drawImage(
image,
pixelCrop.x,
pixelCrop.y,
pixelCrop.width,
pixelCrop.height,
0,
0,
pixelCrop.width,
pixelCrop.height
);
return canvas.toDataURL('image/jpeg');
};
react-image-crop provides a helper function getCroppedImg() in its documentation, but it’s not part of the core API — you still write the canvas logic yourself, similar to react-easy-crop.
react-cropper: Styling is limited to what Cropper.js exposes via CSS classes. You can override .cropper-view-box, .cropper-face, etc., but deep customization requires understanding Cropper.js internals.react-easy-crop: Offers props like cropShape ('rect' or 'round'), showGrid, and full control over colors and border styles via CSS variables or inline styles.react-image-crop: Highly customizable via the ruleOfThirds, className, and style props. You can style the crop area, handles, and overlay independently.Example of customizing the crop area appearance:
// react-easy-crop
<Cropper
...
cropShape="round"
showGrid={false}
style={{
containerStyle: { backgroundColor: 'rgba(0,0,0,0.5)' },
mediaStyle: { opacity: 0.8 }
}}
/>
// react-image-crop
<ReactCrop
...
ruleOfThirds
className="custom-crop"
style={{
cropAreaStyle: { border: '2px dashed red' },
cropHandleStyle: { background: 'white' }
}}
/>
| Concern | react-cropper | react-easy-crop | react-image-crop |
|---|---|---|---|
| Architecture | Imperative (wrapper) | Declarative (native React) | Declarative (native React) |
| Bundle size | Larger (includes Cropper.js) | Moderate | Smallest |
| Zoom/Rotation | ✅ Full support | ✅ Smooth, animated | ❌ Not supported |
| Mobile UX | Functional but dated | Excellent (gestures, inertia) | Basic touch support |
| Image extraction | Built-in | Manual implementation required | Manual implementation required |
| Custom styling | Limited (CSS overrides) | Good (props + CSS vars) | Very flexible |
react-cropper is your best bet, despite the imperative overhead.react-easy-crop delivers a polished experience with minimal code.react-image-crop gets the job done cleanly and predictably.All three are actively maintained as of 2024 and safe for production use. Avoid assuming one is “better” — match the tool to your project’s specific needs around features, UX expectations, and architectural preferences.
Choose react-easy-crop if you want a modern, purely React-based solution with a clean hook-friendly API, smooth animations, and minimal setup. It excels in mobile-responsive designs and supports zoom, rotation, and fixed aspect ratios out of the box. This package is ideal for applications where UX polish (like inertia scrolling or gesture support) matters more than low-level canvas control, and you prefer declarative over imperative patterns.
Choose react-cropper if you need advanced features like zoom, rotation, free-form cropping, or aspect ratio locking directly from Cropper.js, and you're comfortable managing an imperative API within a React component. It’s suitable when you require pixel-perfect control over the cropping canvas or need to replicate complex behaviors already supported by Cropper.js. However, be prepared to handle DOM refs and lifecycle synchronization manually, as it’s a thin wrapper around a non-React library.
Choose react-image-crop if you need a lightweight, dependency-free cropper with straightforward integration and basic cropping capabilities. It offers good customization of the crop area appearance and supports aspect ratio constraints, but lacks zoom or rotation. This package is best for simple use cases—like profile picture uploads—where you don’t need advanced manipulation and want predictable, maintainable code with minimal bundle impact.
A React component to crop images/videos with easy interactions
Check out the examples:
If react-easy-crop doesn't cover your needs we recommend taking a look at Pintura
Pintura features cropping, rotating, flipping, filtering, annotating, and lots of additional functionality to cover all your image and video editing needs on both mobile and desktop devices.
yarn add react-easy-crop
or
npm install react-easy-crop --save
The Cropper is styled with
position: absoluteto take the full space of its parent. Thus, you need to wrap it with an element that usesposition: relativeor the Cropper will fill the whole page.
import { useState, useCallback } from 'react'
import Cropper from 'react-easy-crop'
const Demo = () => {
const [crop, setCrop] = useState({ x: 0, y: 0 })
const [zoom, setZoom] = useState(1)
const onCropComplete = (croppedArea, croppedAreaPixels) => {
console.log(croppedArea, croppedAreaPixels)
}
return (
<Cropper
image={yourImage}
crop={crop}
zoom={zoom}
aspect={4 / 3}
onCropChange={setCrop}
onCropComplete={onCropComplete}
onZoomChange={setZoom}
/>
)
}
This component requires some styles to be available in the document. By default, you don't need to do anything, the component will automatically inject the required styles in the document head. If you want to disable this behaviour and manually inject the CSS, you can set the disableAutomaticStylesInjection prop to true and use the file available in the package: react-easy-crop/react-easy-crop.css.
If you are using the Cropper inside a modal, you should ensure that there is no opening animation that is changing the modal dimensions (scaling effect). Fading or sliding animations are fine. See #428, #409, #267 or #400 for more details.
| Prop | Type | Required | Description |
|---|---|---|---|
image | string | The image to be cropped. image or video is required. | |
video | string or Array<{ src: string; type?: string }> | The video to be cropped. image or video is required. | |
crop | { x: number, y: number } | ✓ | Position of the media. { x: 0, y: 0 } will center the media under the cropper. |
zoom | number | Zoom of the media between minZoom and maxZoom. Defaults to 1. | |
rotation | number (in degrees) | Rotation of the media. Defaults to 0. | |
aspect | number | Aspect of the cropper. The value is the ratio between its width and its height. The default value is 4/3 | |
minZoom | number | Minimum zoom of the media. Defaults to 1. | |
maxZoom | number | Maximum zoom of the media. Defaults to 3. | |
zoomWithScroll | boolean | Enable zoom by scrolling. Defaults to true | |
cropShape | 'rect' | 'round' | Shape of the crop area. Defaults to 'rect'. | |
cropSize | { width: number, height: number } | Size of the crop area (in pixels). If you don't provide it, it will be computed automatically using the aspect prop and the media size. You should probably not use this option and should rely on aspect instead. See https://github.com/ValentinH/react-easy-crop/issues/186. | |
showGrid | boolean | Whether to show or not the grid (third-lines). Defaults to true. | |
roundCropAreaPixels | boolean | Whether to round the crop area dimensions to integer pixels. Defaults to false. | |
zoomSpeed | number | Multiplies the value by which the zoom changes. Defaults to 1. | |
objectFit demo | 'contain', 'cover', 'horizontal-cover' or 'vertical-cover' | Specifies how the image is shown in the cropper. contain: the image will be adjusted to be fully visible, horizontal-cover: the image will horizontally fill the cropper, vertical-cover: the image will vertically fill the cropper, cover: we automatically pick between horizontal-cover or vertical-cover to have a fully visible image inside the cropper area. Defaults to "contain". | |
onCropChange | crop => void | ✓ | Called every time the crop is changed. Use it to update your crop state. |
onZoomChange | zoom => void | Called every time the zoom is changed. Use it to update your zoom state. | |
onRotationChange | rotation => void | Called every time the rotation is changed (with mobile or multi-fingers gestures). Use it to update your rotation state. | |
onCropSizeChange | cropSize => void | Called when a change in either the cropSize width or the cropSize height occurs. | |
onCropComplete | Function | Called when the user stops moving the media or stops zooming. It will be passed the corresponding cropped area on the media in percentages and pixels (rounded to the nearest integer) | |
onCropAreaChange | Function | Very similar to onCropComplete but is triggered for every user interaction instead of waiting for the user to stop. | |
transform | string | CSS transform to apply to the image in the editor. Defaults to translate(${crop.x}px, ${crop.y}px) rotate(${rotation}deg) scale(${zoom}) with variables being pulled from props. | |
style | { containerStyle: object, mediaStyle: object, cropAreaStyle: object } | Custom styles to be used with the Cropper. Styles passed via the style prop are merged with the defaults. | |
classes | { containerClassName: string, mediaClassName: string, cropAreaClassName: string } | Custom class names to be used with the Cropper. Classes passed via the classes prop are merged with the defaults. If you have CSS specificity issues, you should probably use the disableAutomaticStylesInjection prop. | |
mediaProps | object | The properties you want to apply to the media tag ( | |
cropperProps | object | The properties you want to apply to the cropper. | |
restrictPosition | boolean | Whether the position of the media should be restricted to the boundaries of the cropper. Useful setting in case of zoom < 1 or if the cropper should preserve all media content while forcing a specific aspect ratio for media throughout the application. Example: https://codesandbox.io/s/1rmqky233q. | |
initialCroppedAreaPercentages | { width: number, height: number, x: number, y: number} | Use this to set the initial crop position/zoom of the cropper (for example, when editing a previously cropped media). The value should be the same as the croppedArea passed to onCropComplete. This is the preferred way of restoring the previously set crop because croppedAreaPixels is rounded, and when used for restoration, may result in a slight drifting crop/zoom | |
initialCroppedAreaPixels | { width: number, height: number, x: number, y: number} | Use this to set the initial crop position/zoom of the cropper (for example, when editing a previously cropped media). The value should be the same as the croppedAreaPixels passed to onCropComplete Example: https://codesandbox.io/s/pmj19vp2yx. | |
onInteractionStart | Function | Called every time a user starts a wheel, touch, mousedown or keydown (for arrow keys only) event. | |
onInteractionEnd | Function | Called every time a user ends a wheel, touch, mousedown or keydown (for arrow keys only) event. | |
onMediaLoaded | Function | Called when media gets loaded. Gets passed an mediaSize object like { width, height, naturalWidth, naturalHeight } | |
onTouchRequest | (e: React.TouchEvent<HTMLDivElement>) => boolean | Can be used to cancel a touch request by returning false. | |
onWheelRequest | (e: WheelEvent) => boolean | Can be used to cancel a zoom with wheel request by returning false. | |
disableAutomaticStylesInjection | boolean | Whether to auto inject styles using a style tag in the document head on component mount. When disabled you need to import the css file into your application manually (style file is available in react-easy-crop/react-easy-crop.css). Example with sass/scss @import "~react-easy-crop/react-easy-crop";. | |
setCropperRef | (ref: React.RefObject<HTMLDivElement>) => void | Called when the component mounts, if present. Used to set the value of the cropper ref object in the parent component. | |
setImageRef | (ref: React.RefObject<HTMLImageElement>) => void | Called when the component mounts, if present. Used to set the value of the image ref object in the parent component. | |
setVideoRef | (ref: React.RefObject<HTMLVideoElement>) => void | Called when the component mounts, if present. Used to set the value of the video ref object in the parent component. | |
setMediaSize | (size: MediaSize) => void | [Advanced Usage] Used to expose the mediaSize value for use with the getInitialCropFromCroppedAreaPixels and getInitialCropFromCroppedAreaPercentages functions. See this CodeSandbox instance for a simple example. | |
setCropSize | (size: Size) => void | [Advanced Usage] Used to expose the cropSize value for use with the getInitialCropFromCroppedAreaPixels and getInitialCropFromCroppedAreaPercentages functions. See this CodeSandbox instance for a simple example. | |
nonce | string | The nonce to add to the style tag when the styles are auto injected. | |
keyboardStep | number | number of pixels the crop area moves with each press of an arrow key when using keyboard navigation. Defaults to 1. |
This callback is the one you should use to save the cropped area of the media. It's passed 2 arguments:
croppedArea: coordinates and dimensions of the cropped area in percentage of the media dimensioncroppedAreaPixels: coordinates and dimensions of the cropped area in pixels.Both arguments have the following shape:
const area = {
x: number, // x/y are the coordinates of the top/left corner of the cropped area
y: number,
width: number, // width of the cropped area
height: number, // height of the cropped area
}
This is the exact same callback as onCropComplete, but is triggered for all user interactions.
It can be used if you are not performing any render action on it.
croppedArea: coordinates and dimensions of the cropped area in percentage of the media dimensioncroppedAreaPixels: coordinates and dimensions of the cropped area in pixels.Both arguments have the following shape:
const area = {
x: number, // x/y are the coordinates of the top/left corner of the cropped area
y: number,
width: number, // width of the cropped area
height: number, // height of the cropped area
}
Called when media gets successfully loaded. This is useful if you want to have a custom zoom/crop strategy based on media size.
Example:
const CONTAINER_HEIGHT = 300
const CroppedImage = ({ image }) => {
const [crop, onCropChange] = React.useState({ x: 0, y: 0 })
const [zoom, onZoomChange] = React.useState(1)
return (
<Cropper
image={image}
crop={crop}
zoom={zoom}
onCropChange={onCropChange}
onZoomChange={onZoomChange}
onMediaLoaded={(mediaSize) => {
// Adapt zoom based on media size to fit max height
onZoomChange(CONTAINER_HEIGHT / mediaSize.naturalHeight)
}}
/>
)
}
[Advanced Usage]
Used to calculate values for crop and zoom based on a desired croppedAreaPercentages
value. See this CodeSandbox instance for a simple example.
[Advanced Usage]
See getInitialCropFromCroppedAreaPercentages.
yarn
yarn start
Now, open http://localhost:3001/index.html and start hacking!
This project is maintained by Valentin Hervieu.
This project was originally part of @ricardo-ch organisation because I (Valentin) was working at Ricardo. After leaving this company, they gracefully accepted to transfer the project to me. ❤️
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!