All Questions
Tagged with image-upload javascript
80 questions
0
votes
2
answers
75
views
Uploading image to S3 from user-submitted form completes but corrupted
In a Remix app, I have a form I'm using to select & upload an image, just a simple <input name="image" type="file" />
The form POSTs to a Remix handler, and in the ...
2
votes
0
answers
86
views
javascript: image file size is 0 after taking picture from camera video recording option in android 10 using html5 <input type="file">
After taking a picture using the video recording mode on an Android 10 camera, the image file size is 0 and the image is also broken.
I log the e.target.result and there's no base64 string, only "...
-1
votes
1
answer
44
views
Google cloud image upload Error javascript
I'm trying to upload an image on Google cloud console with javascript, but it's not working at all.
I have tried with the multiple post URL's
https://storage.googleapis.com/upload/storage/v1/b/${...
0
votes
3
answers
1k
views
How to upload image or file using cypress-file-upload
I am trying to upload an image for E2E testing but could succeed
First of all, I have installed
npm install --save-dev cypress-file-upload
and then using page object model
setting_page.js enter image ...
1
vote
1
answer
367
views
How can I capture a picture from webcam and store it in a ImageField in Django?
I want to take a picture from a webcam and save it in ImageField. I've seen some results related to this question, but I'm not able to understand how they work. For example:
How can I capture a ...
0
votes
0
answers
39
views
how send multi image From img src to controller in asp.net mvc [duplicate]
other data the from send form.submit()
I first read the img tags value then converted it to a file , then added it to the form But its value in the controller is null
var imgs = document....
3
votes
2
answers
6k
views
@mantine dropzone React image upload issues while image upload on login form
I tried for getting the image path with Dropzone in this way {...form.getInputProps("tourImages")} but it gives undefined . Also, I tried getting an image input with useState hooks, image ...
0
votes
2
answers
1k
views
ReactJS: Image display not working correctly
So I have this scenario where I am uploading the images. On front end, its React Js and back end in Node Js. Images get uploaded fine but when I have to display them on front end it doesn't work.
I am ...
0
votes
1
answer
638
views
Getting Download URLs from Firebase Storage on Multiple Image Upload Using Promise.all() in React Native
I am trying to get the download URLs of an array of images that are uploaded to firebase storage. I am having difficulties pushing the download URLs into the downloadURLs array in state.
The values ...
0
votes
1
answer
725
views
In REST API how to attach files to the body of form data in C#
I'm using Postman Rest API calls to upload file to Azure Blob. I want to understand how to attach files to the body of form data from frontend using C# code, so that it return me the result with some ...
-1
votes
1
answer
3k
views
How to convert request file to base64 string in nodejs
I have file coming in request.file object. If I console.log(request.file)
It prints
{
fieldname: 'file',
originalname: 'Screenshot from 2021-06-23 18-34-25.png',
encoding: '7bit',
mimetype: '...
-2
votes
1
answer
137
views
How Should I get the images in base64 format in other input fields?
Actually, I am making an app that can take user images and then upload them to the server but it throws an error when I upload more than one file. I want to take 5 files and then convert them into ...
0
votes
3
answers
1k
views
If I update a file of type svg then how can I get the svg string out of it?
I need the data in this format after selecting an SVG icon from any file upload.
<svg
width="100%"
height="100%"
viewBox="0 0 24 24"
fill="none"
...
0
votes
0
answers
373
views
Flask/Javascript - How to upload multiple files that were input sequentially?
I'm making a basic blogging app in flask, and at the moment I'm trying to add the ability to upload multiple images.
I want to allow people to upload images one at a time sequentially, but when a file ...
0
votes
2
answers
269
views
Firebase: Error loading preview after upload
Can somebody please help? I have been searching documentation for hours, but can't find the right solution. I am trying to just upload a hard coded image that I have in my project called house.jpg. ...