I'm trying to send image from image-picker to the server, but image-picker returns only base64.
How can I convert base64 to bytes in React-Native using expo?
I'm trying to send image from image-picker to the server, but image-picker returns only base64.
How can I convert base64 to bytes in React-Native using expo?
So the solution for me was 'Buffer'.
It can be imported as:
import { Buffer } from "buffer";
Then all you need to do is:
let your_bytes = Buffer.from(your_base64, "base64");
© 2022 - 2024 — McMap. All rights reserved.