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
ImageEditor.cropImage(imageUrl, imageSize, (imageURI) => { ImageStore.getBase64ForTag(imageURI, (base64Data) => { // base64Data contains the base64string of the image }, (reason) => console.error(reason)); }, (reason) => console.error(reason));