2

I need to upload image to server. The server require image in byte array. I'm using react-native-image-picker to select image from device. It returns URI(image path), which I need to convert to byte Array. Is there any way to image path to byte array?

Linda Paiste
  • 28,886
  • 4
  • 42
  • 71

1 Answers1

1

react-native-image-picker provides option for base64 string. Set includeBase64 prop to true. You will get base64 encoded string in response.

jted95
  • 776
  • 1
  • 7
  • 22
sachin K
  • 36
  • 4