chooyan-eng / crop_your_image

A flutter plugin which provides Crop Widget for cropping images.
https://pub.dev/packages/crop_your_image
Apache License 2.0
163 stars 139 forks source link

sometimes will throw InvalidRectError #142

Closed namezcc closed 9 months ago

namezcc commented 9 months ago

When I move the image to the edge,The _cropFunc function in the crop.dart file may sometimes have rect.right or rect.bottom values that are 0.00...0X larger than originalImage.width or originalImage.height. i think can change code with: bottomRight: Offset(min(rect.right, originalImage.width), min(rect.bottom, originalImage.height)) ?

chooyan-eng commented 9 months ago

@namezcc Thank you for your feedback and suggestion! I'll try to reproduce it first.

orkun1675 commented 9 months ago

I'm experiencing the same error sometimes on web.

chooyan-eng commented 9 months ago

I've fixed this issue with 1.0.2. Thank you for your feedback!