We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When cropping, the cropbox outline is not aligned with the image cropped, on the right side :
To Reproduce Steps to reproduce the behavior:
Additional context I got a unusual ratio : 1052/1871, but the problem occurs even in a "common" format like 16/9
<Cropper ref={cropperRef} style={{ maxHeight: "35vh", width: "100%" }} aspectRatio={targetWidth / targetHeight} src={src} viewMode={1} background={false} responsive={true} autoCropArea={1} checkOrientation={false} zoomable={false} />
The text was updated successfully, but these errors were encountered:
metoo
Sorry, something went wrong.
i deal it with this .cropper-view-box { outline: 0px solid #E6E6E6; } .cropper-crop-box .cropper-line.line-e { right: -1px; width: 1px; } .cropper-crop-box .cropper-line.line-n { height: 1px; top: -1px; } .cropper-crop-box .cropper-line.line-w { left: -1px; width: 1px; } .cropper-crop-box .cropper-line.line-s { bottom: -1px; height: 1px; } .cropper-line { opacity: 1; }
.cropper-view-box { outline: 0px solid #E6E6E6; } .cropper-crop-box .cropper-line.line-e { right: -1px; width: 1px; } .cropper-crop-box .cropper-line.line-n { height: 1px; top: -1px; } .cropper-crop-box .cropper-line.line-w { left: -1px; width: 1px; } .cropper-crop-box .cropper-line.line-s { bottom: -1px; height: 1px; } .cropper-line { opacity: 1; }
@stevegnr Was your problem solved?
No branches or pull requests
Describe the bug
When cropping, the cropbox outline is not aligned with the image cropped, on the right side :
To Reproduce
Steps to reproduce the behavior:
Additional context
I got a unusual ratio : 1052/1871, but the problem occurs even in a "common" format like 16/9
The text was updated successfully, but these errors were encountered: