react-image-crop
react-image-crop copied to clipboard
A responsive image cropping tool for React
Hello, for a project I'm working on we have implemented the cropper and it works great! However, we would now like to add outpainting/uncrop as well. Much like in this...
First of all I want to thank you for this great work. Is it posible to have a multiple crop selection instances for an image at the same time? I...
Hi and thx for this tool ! When i open the crop in a modal, the mask is not showed the first time. If i close the modal and re...
I have implemented the library in ReactJS website to crop images after they've been selected by the user. I am then loading the React web page in a WebView in...
I have a circular image cropper for logos. Some people are complaining because they can't fit their logos into the circular cropper because it doesn't go beyond the bounds of...
This addresses [this issue](https://github.com/sekoyo/react-image-crop/issues/369). I aim to clarify that you can accept percentage values of the crop in the event handler, in the FAQ.
` setCrop(percentageCrop)} onComplete={(c) => setCompletedCrop && setCompletedCrop(c) } aspect={builderLandscapeAspectRatio(builderAspectRatio)} // passing different aspect ratios keepSelection style={{ minHeight: "100%", height: "auto", }} > ` **I tried the below approach to swap...
In the ReactCrop component, setting the height to a constant value like `px` or `rem` will change the image size to the desired height. Using a value like 50% on...
Hello! We want to avoid a situation where the image can be scaled out to an extent where it starts producing transparent parts. We want the scale out to stop...
## Problem pick a 430x430 image, crop with 100%, and save. reload the image back by setting imgSrc, it triggers onComplete, returning: ```js crop = {"unit":"px","x":0,"y":0,"width":215,"height":215} percentCrop = {"x":0,"y":0,"width":100,"height":100,"unit":"%"} ```...