如何在 React Native 中将图像 URI 转换为 Byte[](字节数组)

How to convert image URI to Byte[](Byte array) in React Native

我需要上传图片到服务器。服务器需要字节数组中的图像。我正在使用来自设备的 react-native-image-picker 到 select 图像。它 returns URI(图像路径),我需要将其转换为字节数组。有什么方法可以将图像路径映射到字节数组吗?

react-native-image-picker 提供 base64 字符串选项。将 includeBase64 属性设置为 true。您将得到 base64 编码的字符串作为响应。