React-Native: Convert image url to base64 string

前端 未结 9 548
轻奢々
轻奢々 2020-12-08 19:03

I\'m building a react native app that needs to store images at base64 string format for offline viewing capabilities.

What library / function would give me the best

9条回答
  •  情歌与酒
    2020-12-08 19:37

    You can use react-native-image-base64. You have to give image url and it returns the base64 string of image.

    ImgToBase64.getBase64String('file://youfileurl')
      .then(base64String => doSomethingWith(base64String))
      .catch(err => doSomethingWith(err));
    

提交回复
热议问题