React-Native: Convert image url to base64 string

前端 未结 9 569
轻奢々
轻奢々 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:53

    I used another package: react-native-fs

    import RNFS from 'react-native-fs';
    
    var data = await RNFS.readFile( "file://path-to-file", 'base64').then(res => { return res });
    

    This works fine.

提交回复
热议问题