You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
}
`
In the above code the result will always return null on IOS 18. Android works correctly. Alson working on IOS simulator below IOS 18. I tried to catch any errors that might have happened but nothing from the logs in vs code. However I did find these logs in xcode:
Could not create a bookmark: NSError: Cocoa 4097 "connection to service named com.apple.FileProvider"
updateImageHeadroom:1309: *** ERROR: CGImageSetHeadroom: 3.008186 failed for image with kCGColorSpaceDisplayP3 color space
image_picker: compressing is not supported for type (null). Returning the image with original quality
However, it seems that these logs refer to image_picker plugin which is actually working fine even on IOS 18 so im not really sure where the problem lies
The text was updated successfully, but these errors were encountered:
Hm, the logs indicate that an image with kCGColorSpaceDisplayP3 color space was passed. We don't use image_picker in this package, so that seems to indicate that the error is coming from somewhere before the call to the cropper.
I'll take a look once I have time. Could you try with a standard JPEG file and see if this issue happens?
`
Future<CropImageResult?> _cropImageNew(File imageFile) async {
final CropImageResult? result;
}
`
In the above code the result will always return null on IOS 18. Android works correctly. Alson working on IOS simulator below IOS 18. I tried to catch any errors that might have happened but nothing from the logs in vs code. However I did find these logs in xcode:
Could not create a bookmark: NSError: Cocoa 4097 "connection to service named com.apple.FileProvider"
updateImageHeadroom:1309: *** ERROR: CGImageSetHeadroom: 3.008186 failed for image with kCGColorSpaceDisplayP3 color space
image_picker: compressing is not supported for type (null). Returning the image with original quality
However, it seems that these logs refer to image_picker plugin which is actually working fine even on IOS 18 so im not really sure where the problem lies
The text was updated successfully, but these errors were encountered: