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 . |
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 ( or depending on your media) |
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. |