react-native-exif
react-native-exif copied to clipboard
why exif result has not model or other exif information in android?
why result only has ImageWidth,ImageHeight,Orientation? how to get others?
return NativeModules.ReactNativeExif.getExif(path).then(result => { if (Platform.OS === 'android') { return unifyAndroid(result) } else { return unifyIOS(result) } }) i find other result is null, such as model
3ks
In 0.0.7 version the original exif data is exposed in the response. What exif fields do you need?
Sorry to up this one but I have a similar issue so I'll just write in here. Why not include the result of exif.getLatLong() (android) in the response?
@francisco-sanchez-molina take a look at this maybe? https://github.com/francisco-sanchez-molina/react-native-exif/compare/master...novanor:master