react-native-get-gallery-image
Version:
Get an image and move it to a given directory
28 lines (14 loc) • 571 B
Markdown
Get an image and move it to a given directory. Useful for iOS and Android where the urls from the gallery are not file paths (`asset-library://` and `content://`)
## Installation
`npm i react-native-get-gallery-image -- save`
or
`yarn add react-native-get-gallery-image`
then run
`react-native link`
## Example usage
```javascript
import RNGGI from 'react-native-get-gallery-image'
const path = `some-url-from-the-gallery-or-camera-roll`
const movedImagePath = await RNGGI.moveFile(path, 'some-new-name', 'aDirectory')
```