All Questions
Tagged with react-native-image-picker image
8 questions
2
votes
1
answer
2k
views
How to convert image URI to Byte[](Byte array) in React Native
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 ...
0
votes
1
answer
1k
views
How to capture and render multiple images by camera (react native image picker) in react native app
I want to capture and render 3 different different images In react native app. how can I do this. now I am able to click image but when I click image then same image is rendering 3 times but I want to ...
0
votes
0
answers
222
views
Concert image data: URI to file:/// react native
I need help here.
I have an image data URI and I want to convert it to file:/// i.e. from
data:image/jpeg;base64,/9j/...
2
votes
0
answers
561
views
react-native-image-picker upload image fetch network error
I use react-native-image-picker to upload image to a server. I use the following code:
sendPhoto = async () =>{
const fileToUpload = {
type:'image/jpg',
uri: 'file://'+this.state.photo....
1
vote
1
answer
1k
views
Cropping multiple images in react native
What would be the right approach to crop several images at ones in React Native? I'm working on an app where user selects many photos but before uploading them to the server, each photo should have ...
1
vote
1
answer
1k
views
After Image Uploading, image uri is null for iOS alone in React Native
In my React Native app, I have added an functionality to upload multiple images, which will be stored as image[] including uri.
This works perfectly for Android.
But for iOS, the image[] is created ...
-1
votes
1
answer
470
views
What files determine the app size of a react native app?
I want to make sure I am creating my file system properly for my react native app.
Currently, I receive images on the app from the user, and then I save them in an images folder within the project. ...
1
vote
1
answer
5k
views
Unable to display image using react-native-image-picker
I'm trying to integrate react-native-image-picker and I was able to successfully install it. Now when I try to choose image from gallery in log it does shows that my imageSource has value but it doesn'...