react-native-exif
react-native-exif copied to clipboard
I'm getting back the following data it's missing the GPS is this correct `{"ImageWidth":1125,"ImageHeight":1500,"Orientation":1,"originalUri":"/private/var/mobile/Containers/Data/Application/CCE342DF-CB0D-475E-8975-FEF1F42EA956/tmp/react-native-image-crop-picker/644D5A44-608F-45BB-A350-58DB27E2895F.jpg","exif":{"{JFIF}":{"DensityUnit":0,"YDensity":72,"XDensity":72,"JFIFVersion":[1,0,1]},"ProfileName":"sRGB IEC61966-2.1","{TIFF}":{"Orientation":1},"{Exif}":{"PixelYDimension":1500,"PixelXDimension":1125,"ColorSpace":1},"ColorModel":"RGB","PixelHeight":1500,"Depth":8,"Orientation":1,"originalUri":"/private/var/mobile/Containers/Data/Application/CCE342DF-CB0D-475E-8975-FEF1F42EA956/tmp/react-native-image-crop-picker/644D5A44-608F-45BB-A350-58DB27E2895F.jpg","PixelWidth":1125}}` And this is the image uri `/private/var/mobile/Containers/Data/Application/25E25800-C51F-44BE-BEDA-B9DA7CE4CEBA/tmp/react-native-image-crop-picker/26C6E09D-571F-4745-BBA4-ABB0FCCFE7DD.jpg` I'm using the react-native-image-crop-picker the image is stored...
Platform : Android React Native version : 0.60.5 react-native-exif : 0.4.0 can not read the uri uri: **"content://com.demo.provider/external_files/Pictures/images/image-e2c35a06-561c-4d7a-bb84-cea653fc7bee.jpg"** please provide the solution.. if i choose the image from gallery than...
Hello, I am trying to use this library and I get the following error: react-native: 0.51.0 ``` TypeError: undefined is not an object (evaluating '_reactNative.NativeModules.ReactNativeExif.getExif') ``` These were the changes...
Great module and quite useful. I'm curious about extending this to make it possible to write to the metadata. For example, modify different elements of the EXIF or write to...
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...
Hi, on Android I'm not able to retrieve some metadata, which are available on iOS. For example copyright info (I have added `ExifInterface.TAG_COPYRIGHT` to `EXIF_ATTRIBUTES in Exif.java`) is not available...
When trying to use this project on iOS I get file not found at: import In `react-native-exif/ios/ReactNativeExif/ReactNativeExif.h` we have an import: #import But in recent versions of React Native the...
Hey thanks for the great work on this module! It seems like we can get even more exif data from a jpeg file. How should I do it?
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...