-
-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cropped area not accounting for zoom of containing elements properly #591
Comments
I am also seeing this issue. |
I used to have a
https://github.com/sekoyo/react-image-crop/blob/9.1.1/src/ReactCrop.tsx#L358 https://github.com/sekoyo/react-image-crop/blob/9.1.1/src/ReactCrop.tsx#L436 Are you able to make an example of the issue on React Flow (haven't used or heard of it before)? |
React Flow is a library used for node based workflows. The way the zoom works under the hood is utilizing It would be possible to make a CodeSandbox with React Flow in particular, but that would require more boilerplate since you need to define all your node types. In my current project, the behavior is slightly different than the example above as the cropped output is accurate to the crop area visually. It just won't let you set the crop area to larger than the zoom amount. In other words, the screenshot I attached above is the maximum selectable area. |
Sorry I misread - looks like it's only an issue with the crop preview. So you can modify it like: async function canvasPreview(
image: HTMLImageElement,
canvas: HTMLCanvasElement,
crop: PixelCrop,
scale = 1,
rotate = 0,
appScalePc = 100,
) {
const ctx = canvas.getContext('2d')
if (!ctx) {
throw new Error('No 2d context')
}
const scaleX = (image.naturalWidth / image.width) * (100 / appScalePc)
const scaleY = (image.naturalHeight / image.height) * (100 / appScalePc)
// ....
} And if your |
Would it still be possible to expose that zoom prop? |
I fixed this with the following subclass - would it be possible to expose a scale or zoom parameter as it seems like it does this?
|
Bug Description:
I am using
ReactCrop
as an element/node on aReact Flow
canvas. The React Flow library allows the entire canvas area to be zoomed on scroll. Whenever thezoom !== 1
, it leaves me unable to crop the larger than zoom (when < 1) or able to crop larger than the image (when > 1). I am also scaling the image down from naturalWidth to a set max width with CSS, but the completed crop is properly being calculated so shouldn't be any issues there.Expected Behavior:
The croppable area selection should always be a maximum of the width and height of the image.
Actual Behavior:
The croppable area selection is only able to go to a maximum of
width * zoom
orheight * zoom
. If I try to manually divide by the zoom value duringsetCrop
it causes another issue where the crop area expands while moving the selection.Minimum Reproducible Example
A minimum reproducible example can be created by adding
transform: scale(50%)
to the div containing theReactCrop
component then trying to move the crop selection. the selection will only be able to crop up to 50% in the top left of the imagePossible Solutions
There seems to be an issue with the containCrop or clamping logic within the
resizeCrop
function, so I'm wondering if we can either calculate any zoom value internally using window/document properties or if we can pass in a prop forzoom
. This would be different from thescale
prop because I still want the image to display without any whitespace and at 1.0 scale.The text was updated successfully, but these errors were encountered: