-
Notifications
You must be signed in to change notification settings - Fork 52
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
Exif.getExif() callback are not called #14
Comments
i solved the problem by using only imagePicker , they add exif in last version
|
This is still a problem with the react-native-exif library - I can't use image-picker and do want this to work on iOS, please re-open! @alainib |
Seems like it's called on the simulator when I slice out the "file:///"" at the start of a path, but not on my device. Seems like if it fails for whatever reason, it doesn't return an error but is just silent. @francisco-sanchez-molina |
I'm having this same issue. Also works on the simulator (and strangely my iPhone X, but not any other iPhones). No error but doesn't call the callback. I've tried with promise and async/await. Any solutions? |
I fixed this issue in my branch (PR #33) with a new method getExifWithLocalIdentifier(). There was a permission issue with getting the photo using the local path. It only showed up on some phones. The new method should work for all iOS phones though. It uses the local identifier of the photo instead of the source URL/path, if you have that available (which if your using react-native-image-crop-picker or react-native-image-picker, you should). |
i get a bug on IOS , on android it work ( logs are displayed )
my problem is the getExif() don't call the callback, nothing happen.
my test code :
from camera roll it work :
what i'm trying to do is
did i miss something in the testfromlib function ?
The text was updated successfully, but these errors were encountered: