1.0.1 • Published 3 years ago

@qeepsake/react-native-image-exif v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

React Native Exif

All Contributors

An image exif reader

Installation

yarn add @qeepsake/react-native-image-exif

or

npm install @qeepsake/react-native-image-exif

Usage

getExif

import Exif from 'react-native-exif'

...

Exif.getExif('/sdcard/tt.jpg')
    .then(msg => console.warn('OK: ' + JSON.stringify(msg)))
    .catch(msg => console.warn('ERROR: ' + msg))

...

Exif.getExif('content://media/external/images/media/111')
    .then(msg => console.warn('OK: ' + JSON.stringify(msg)))
    .catch(msg => console.warn('ERROR: ' + msg))

...

Exif.getExif('assets-library://asset/asset.JPG?id=xxxx&ext=JPG')
    .then(msg => console.warn('OK: ' + JSON.stringify(msg)))
    .catch(msg => console.warn('ERROR: ' + msg))

Exif values

Value
ImageWidth
ImageHeight
Orientation
originalUri
exif

getLatLong

Fetch geo coordinates as floats.

...
Exif.getLatLong('/sdcard/tt.jpg')
    .then(({latitude, longitude}) => {console.warn('OK: ' + latitude + ', ' + longitude)})
    .catch(msg => console.warn('ERROR: ' + msg))
...

Contributors

Thanks goes to these wonderful people (emoji key):

francisco-sanchez-molina💻Kesha Antonov💻Olivier Collet💻hygkui💻EurekaO💻Colin Basnett 💻

This project follows the all-contributors specification. Contributions of any kind welcome!