🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

React Image Crop is a responsive image cropping tool for React.js.

Image React

Documentation

React Image Crop

An image cropping tool for React with no dependencies.

React Image Crop on NPM

Sandbox Demo

ReactCrop Demo

Table of Contents

  1. Features
  2. Installation
  3. Usage
  4. Example
  5. CDN
  6. Props
  7. FAQ
    1. What about showing the crop on the client?
    2. How to handle image EXIF orientation/rotation
  8. Contributing / Developing

Features

  • Responsive (you can use pixels or percentages).
  • Touch enabled.
  • Free-form or fixed aspect crops.
  • Keyboard support for nudging selection.
  • No dependencies/small footprint (5KB gzip).
  • Min/max crop size.

Installation

npm i react-image-crop --save 

Usage

Include the main js module:

import ReactCrop from 'react-image-crop';

Include either dist/ReactCrop.css or ReactCrop.scss.

import 'react-image-crop/dist/ReactCrop.css'; // or scss: import 'react-image-crop/lib/ReactCrop.scss';

Example

function CropDemo({ src }) {   const [crop, setCrop] = useState({ aspect: 16 / 9 });    return (     <ReactCrop       src={src}       crop={crop}       onChange={setCrop}     />   ); }

See the sandbox demo for a more complete example.

CDN

If you prefer to include ReactCrop globally by marking react-image-crop as external in your application, then include react-image-crop from one of the following CDNs:

  • cdnjs (Coming soon)

  • unpkg

<script src="https://unpkg.com/react-image-crop/dist/ReactCrop.min.js"></script>

Note when importing the script globally using a <script> tag access the component with ReactCrop.Component.

Props

src (required)

<ReactCrop src="path/to/image.jpg" />

You can of course pass a blob url (using URL.createObjectURL() and URL.revokeObjectURL()) or base64 data.

onChange(crop, percentCrop) (required)

A callback which happens for every change of the crop (i.e. many times as you are dragging/resizing). Passes the current crop state object.

Note you must implement this callback and update your crop state, otherwise nothing will change!

onChange = (crop) => {   this.setState({ crop }); }

You can use either crop or percentCrop, the library can handle either interchangeably. Percent crops will be drawn using percentages, not converted to pixels.

crop (required*)

All crop params are initially optional.

* While you can initially omit the crop object, any subsequent change will need to be saved to state in the onChange and passed into the component.

crop: {   unit: 'px', // default, can be 'px' or '%'   x: 130,   y: 50,   width: 200,   height: 200 }  <ReactCrop src="path/to/image.jpg" crop={this.state.crop} />

If you want a fixed aspect you can either omit width and height:

crop: {  aspect: 16/9 }

Or specify one or both of the dimensions:

crop: {   aspect: 16/9,   width: 50, }

If you specify just one of the dimensions, the other will be calculated for you. If you do this you must do it BEFORE the image has loaded.

crop: {   unit: '%',   width: 50,   height: 50, }

unit is optional and defaults to pixels px. It can also be percent %. In the above example we make a crop that is 50% of the rendered image size. Since the values are a percentage of the image, it will only be a square if the image is also a square.

minWidth (optional)

A minimum crop width, in pixels.

minHeight (optional)

A minimum crop height, in pixels.

maxWidth (optional)

A maximum crop width, in pixels.

maxHeight (optional)

A maximum crop height, in pixels.

keepSelection (optional)

If true is passed then selection can't be disabled if the user clicks outside the selection area.

disabled (optional)

If true then the user cannot resize or draw a new crop. A class of ReactCrop--disabled is also added to the container for user styling.

locked (optional)

If true then the user cannot create or resize a crop, but can still drag the existing crop around. A class of ReactCrop--locked is also added to the container for user styling.

className (optional)

A string of classes to add to the main ReactCrop element.

style (optional)

Inline styles object to be passed to the image wrapper element.

imageStyle (optional)

Inline styles object to be passed to the image element.

onComplete(crop, percentCrop) (optional)

A callback which happens after a resize, drag, or nudge. Passes the current crop state object.

percentCrop is the crop as a percentage. A typical use case for it would be to save it so that the user's crop can be restored regardless of the size of the image (for example saving it on desktop, and then using it on a mobile where the image is smaller).

onImageLoaded(image) (optional)

A callback which happens when the image is loaded. Passes the image DOM element.

Useful if you want to set a crop based on the image dimensions when using pixels:

onImageLoaded = image => {   this.setState({ crop: { width: image.width, height: image.height } });   return false; }

Note that you must return false in this callback if you are changing the crop object.

onImageError(event) (optional)

This event is called if the image had an error loading.

onDragStart(event) (optional)

A callback which happens when a user starts dragging or resizing. It is convenient to manipulate elements outside this component.

onDragEnd(event) (optional)

A callback which happens when a user releases the cursor or touch after dragging or resizing.

crossorigin (optional)

Allows setting the crossorigin attribute on the image.

renderSelectionAddon(state) (optional)

Render a custom element in crop selection.

renderComponent (optional)

Render a custom HTML element in place of an image. Useful if you want to support videos:

 const videoComponent = (    <video autoPlay loop style={{ display: 'block', maxWidth: '100%' }}>      <source src="sample.mp4" type="video/mp4" />    </video>  );   <ReactCrop    onChange={this.onCropChange}    renderComponent={videoComponent}  />

FAQ

What about showing the crop on the client?

I wanted to keep this component focused so I didn't provide this. Normally a cropped image will be rendered and cached by a backend.

However here's a ready to use function that returns a file blob for the cropped part after providing some parameters you already have when using this package:

/**  * @param {File} image - Image File Object  * @param {Object} crop - crop Object  * @param {String} fileName - Name of the returned file in Promise  */ function getCroppedImg(image, crop, fileName) {   const canvas = document.createElement('canvas');   const scaleX = image.naturalWidth / image.width;   const scaleY = image.naturalHeight / image.height;   canvas.width = crop.width;   canvas.height = crop.height;   const ctx = canvas.getContext('2d');    ctx.drawImage(     image,     crop.x * scaleX,     crop.y * scaleY,     crop.width * scaleX,     crop.height * scaleY,     0,     0,     crop.width,     crop.height,   );    // As Base64 string   // const base64Image = canvas.toDataURL('image/jpeg');    // As a blob   return new Promise((resolve, reject) => {     canvas.toBlob(blob => {       blob.name = fileName;       resolve(blob);     }, 'image/jpeg');   }); }  async test() {   const croppedImg = await getCroppedImg(image, crop, fileName); }

Some things to note:

  1. toDataURL is synchronous and will block the main thread, for large images this could be for as long as a couple of seconds. Always use toDataURL('image/jpeg') otherwise it will default to image/png and the conversion will be significantly slower.

  2. toBlob is both faster and asynchronous, but not supported on old browsers (this is quickly becoming irrelevant).

  3. Another option to make the conversion faster is to scale the image down before converting it.

How to handle image EXIF orientation/rotation

You might find that some images are rotated incorrectly. Unfortunately this is a browser wide issue not related to this library. You need to fix your image before passing it in.

You can use the following library to load images, which will correct the rotation for you: https://github.com/blueimp/JavaScript-Load-Image/

Contributing / Developing

To develop run npm start, this will recompile your JS and SCSS on changes.

You can test your changes by opening demo/index.html in a browser (you don't need to be running a server).


You May Also Like