react-cropper vs react-easy-crop vs react-image-crop
React Image Cropping Libraries for Web Applications
react-cropperreact-easy-cropreact-image-cropSimilar Packages:

React Image Cropping Libraries for Web Applications

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.

Npm Package Weekly Downloads Trend

3 Years

Github Stars Ranking

Stat Detail

Package
Downloads
Stars
Size
Issues
Publish
License
react-cropper02,07820.5 kB153 years agoMIT
react-easy-crop02,706541 kB2313 days agoMIT
react-image-crop04,086112 kB72a year agoISC

React Image Cropping Libraries Compared: react-cropper vs react-easy-crop vs react-image-crop

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.

🧱 Core Architecture: Wrapper vs Native React

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} />
  );
}

🖼️ Feature Support: Zoom, Rotation, and More

Not all croppers are created equal when it comes to user-facing features.

  • Zoom: Supported by react-cropper (via Cropper.js) and react-easy-crop. Not available in react-image-crop.
  • Rotation: Available in react-cropper and react-easy-crop. Not supported in react-image-crop.
  • Free-form cropping (no aspect ratio): All three support this.
  • Fixed aspect ratios: All support locking to ratios like 1:1 or 16:9.
  • Mobile/touch gestures: 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} />

🛠️ Extracting the Cropped Image: Canvas vs Pixel Math

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.

🎨 Customization and Styling

  • 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' }
  }}
/>

⚖️ Trade-offs Summary

Concernreact-cropperreact-easy-cropreact-image-crop
ArchitectureImperative (wrapper)Declarative (native React)Declarative (native React)
Bundle sizeLarger (includes Cropper.js)ModerateSmallest
Zoom/Rotation✅ Full support✅ Smooth, animated❌ Not supported
Mobile UXFunctional but datedExcellent (gestures, inertia)Basic touch support
Image extractionBuilt-inManual implementation requiredManual implementation required
Custom stylingLimited (CSS overrides)Good (props + CSS vars)Very flexible

💡 When to Use Which

  • Need enterprise-grade features like flip, rotate, scale, and precise pixel control?react-cropper is your best bet, despite the imperative overhead.
  • Building a consumer-facing app where smooth UX and mobile gestures matter?react-easy-crop delivers a polished experience with minimal code.
  • Just need a simple square crop for avatars with zero bloat?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.

How to Choose: react-cropper vs react-easy-crop vs react-image-crop

  • react-cropper:

    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.

  • react-easy-crop:

    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.

  • react-image-crop:

    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.

README for react-cropper

react-cropper

Cropperjs as React component

NPM NPM NPM downloads Bundle Size minZip Bundle Size min License codecov

Demo

Click for a Demo

Docs

Installation

Install via npm

npm install --save react-cropper

You need cropper.css in your project which is from cropperjs. Since this project have dependency on cropperjs, it located in /node_modules/react-cropper/node_modules/cropperjs/dist/cropper.css or node_modules/cropperjs/dist/cropper.css for npm version 3.0.0 later

Quick Example

import React, { useRef } from "react";
import Cropper, { ReactCropperElement } from "react-cropper";
import "cropperjs/dist/cropper.css";

const Demo: React.FC = () => {
  const cropperRef = useRef<ReactCropperElement>(null);
  const onCrop = () => {
    const cropper = cropperRef.current?.cropper;
    console.log(cropper.getCroppedCanvas().toDataURL());
  };

  return (
    <Cropper
      src="https://raw.githubusercontent.com/roadmanfong/react-cropper/master/example/img/child.jpg"
      style={{ height: 400, width: "100%" }}
      // Cropper.js options
      initialAspectRatio={16 / 9}
      guides={false}
      crop={onCrop}
      ref={cropperRef}
    />
  );
};

Options

src

  • Type: string
  • Default: null
<Cropper src="http://fengyuanchen.github.io/cropper/images/picture.jpg" />

alt

  • Type: string
  • Default: picture

crossOrigin

  • Type: string
  • Default: null

dragMode

https://github.com/fengyuanchen/cropperjs#dragmode

scaleX

https://github.com/fengyuanchen/cropperjs#scalexscalex

scaleY

https://github.com/fengyuanchen/cropperjs#scalexscaley

enable

https://github.com/fengyuanchen/cropperjs#enable

disable

https://github.com/fengyuanchen/cropperjs#disable

zoomTo

https://github.com/fengyuanchen/cropperjs#zoomto

rotateTo

https://github.com/fengyuanchen/cropperjs#rotateto

Other options

Accept all options in the docs as properties.

Methods

Use the cropper instance from onInitialized to access cropperjs methods

Build

npm run build

Development

npm start

Author

Fong Kuanghuei

Maintainer

Shubhendu Shekhar

License

MIT