I am trying to Save Image taken from expo camera in my local folder.I am getting Uri,Base64 in return and base64 string is sometime to large.
What would be the best way to store image in my Desktop and keep record of it in database
Following is my code :
const options = {
quality: 0.5,
base64: true,
skipProcessing: true,
};
let img = await ref.current.takePictureAsync(options);
setbase64(img.base64);