Skip to content

Repository files navigation

react-easy-crop

A React component to crop images with easy interactions

versionMonthly downloadsgzip sizeBuild StatusMIT LicensePRs Welcome

react-easy-crop Demo

Demo

Check out the examples:

Features

  • Supports drag and zoom interactions
  • Provides crop dimensions as pixels and percentages
  • Supports any images format (JPEG, PNG, even GIF) as url or base 64 string
  • Mobile friendly

Installation

yarn add react-easy-crop

or

npm install react-easy-crop --save

Basic usage

The Cropper is styled with position: absolute to take the full space of its parent. Thus, you need to wrap it with an element that uses position: relative or the Cropper will fill the whole page.

importCropperfrom'react-easy-crop'classAppextendsReact.Component{state={image: 'your-image-url or as base64',crop: {x: 0,y: 0},zoom: 1,aspect: 4/3,}onCropChange=crop=>{this.setState({ crop })}onCropComplete=(croppedArea,croppedAreaPixels)=>{console.log(croppedArea,croppedAreaPixels)}onZoomChange=zoom=>{this.setState({ zoom })}render(){return(<Cropperimage={this.state.image}crop={this.state.crop}zoom={this.state.zoom}aspect={this.state.aspect}onCropChange={this.onCropChange}onCropComplete={this.onCropComplete}onZoomChange={this.onZoomChange}/>)}}

Props

PropTypeRequiredDescription
imagestringThe image to be cropped.
crop{ x: number, y: number }Position of the image. { x: 0, y: 0 } will center the image under the cropper.
zoomnumberZoom of the image between minZoom and maxZoom. Defaults to 1.
aspectnumberAspect of the cropper. The value is the ratio between its width and its height. The default value is 4/3
minZoomnumberminimum zoom of the image. Defaults to 1.
maxZoomnumbermaximum zoom of the image. Defaults to 3.
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 image size. Warning: this cannot be changed once the component is displayed. If you need to change it (based on some user inputs for instance), you can force the component to be reset by using a key.
showGridbooleanWhether to show or not the grid (third-lines). Defaults to true.
zoomSpeednumberMultiplies the value by which the zoom changes. Defaults to 1.
crossOriginstringAllows setting the crossOrigin attribute on the image.
onCropChangeFunctionCalled everytime the crop is changed. Use it to update your crop state.
onZoomChangeFunctionCalled everytime the zoom is changed. Use it to update your zoom state.
onCropCompleteFunctionCalled when the user stops moving the image or stops zooming. It will be passed the corresponding cropped area on the image in percentages and pixels
onImgErrorFunctionCalled when error occurs while loading an external image
style{ containerStyle: object, imageStyle: 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, imageClassName: string, cropAreaClassName: string }Custom class names to be used with the Cropper. Classes passed via the classes prop are merged with the defaults.

onCropComplete(croppedArea, cropperAreaPixels)

This callback is the one you should use to save the cropped area of the image. It's passed 2 arguments:

  1. croppedArea: coordinates and dimensions of the cropped area in percentage of the image dimension
  2. cropperAreaPixels: coordinates and dimensions of the cropped area in pixels.

Both arguments have the following shape:

constarea={x: number,// x/y are the coordinates of the top/left corner of the cropped areay: number,width: number,// width of the cropped areaheight: number,// height of the cropped area}

Development

yarn
yarn start

Now, open http://localhost:3001/index.html and start hacking!

License

MIT

About

A React component to crop images with easy interactions

Resources

Code of conduct

Contributing

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages