Questions tagged [image-uploading]

The process of moving images or similar files from a client machine to a server for storage and possible later display.

2997 questions
0
votes
1 answer

How to upload an image using jmeter?

I have recorded a script to upload an image. It shows File not found exception. Can anyone please help? I want to upload the same image 1000 times? Its a chat application like whatsapp where I want to send an image. This scenario needs to be…
Bhakti Shah
  • 1,623
  • 3
  • 13
  • 13
0
votes
2 answers

Multiple image upload with db id validation in codeigniter in API Postman

I want to upload multiple images in database based on category_id and vendor_id including validation using Code-igniter Here is the screenshot Screenshot postman attchment function upload_category_doc(){ $vendor_id =…
0
votes
1 answer

Autodesk Forge: adding image files Specified image protocol is invalid

I have created a photoscene in Autodesk Forge. Now I am now trying to upload files to it using this PHP code and my uploads are failing. You can check the urls of the images exist online, are jpgs, and should be acceptable to Forge. (I have also…
mcgregor94086
  • 1,467
  • 3
  • 11
  • 22
0
votes
2 answers

Best Image compression library

I am working on a project in which I need to store user profile images and show user images to them. I am using Google FireStore as database. I want to upload user image, but as we know their image size is too big, it can fill my storage very…
0
votes
1 answer

I'm trying to upload an array of images using Alamofire but getting error

I'm trying to upload an array of images to the server using Alamofire 4.8.2 Here is the function: func uploadMultiplePhotos(centreId: Int, imagesArray: [UIImage]) { let parameters = ["ec_id": centreId, "uploaded_image": imagesArray] as [String…
0
votes
0 answers

Slider image breakpoints on different screen resolutions

I want uploaded image with slides option https://docs.reduxframework.com/core/fields/slides/ on redux-framework have same height and not let slider image to cover all front page if screen resolution gets above mobile,tablets resolution. So far i…
jiweb
  • 1
  • 1
0
votes
2 answers

How to display the uploaded image using Django and AJAX

I am creating a form that allows a user to select a image and upload it using Django and AJAX. This process works fine but the problem is that the uploaded image isn't being displayed on the screen however I did specify a div for it. These are the…
Django Dg
  • 97
  • 4
  • 19
0
votes
1 answer

Check PHP move_uploaded_file when upload completed

I have a problem when uploading the image, I used a function to resize the image, my problem is that when I upload a small size image, It's resize successfully. But with a large size image the error cannot be found. I tried the following…
Ajax
  • 77
  • 1
  • 8
0
votes
1 answer

How to Upload and Retrieve image in latest firebase storage after update

I am trying to upload and retrieve the image and follow all the results available at Stack and tutorials but none of example help me. how to upload an image on button click in latest firebase storage I am following this…
0
votes
1 answer

Getting mkdir error while using uploading image using multer

while uploading file and creating a path , I am getting creating a folder error :- Error: EACCES: permission denied, mkdir '/opt/bitnami/apps/NodeJS-Login/uploads' at Object.fs.mkdirSync (fs.js:885:18) at Function.sync…
NoobCoder
  • 493
  • 8
  • 25
0
votes
2 answers

React Axios: Upload Multiple Images using FormData()

I'm trying to upload files to the back-end. but it fails Basically I want to upload 11 images at the same time. At first I do this const title, image1, image2, ... = this.state; axios.post(`myapi`, {title, image1, image2}) Here is my state…
0
votes
1 answer

why image is shown blur while preview?

I am using the below plugin to upload an image https://www.npmjs.com/package/ng-file-upload but when I choose an image it show blur image why ? here is my code http://jsfiddle.net/ujnmzf8e/1/ .thumb { width: 100px; height: 100px; …
user944513
  • 12,247
  • 49
  • 168
  • 318
0
votes
0 answers

How to add upload image and export it as document

I created a text generator with the help of a script that I found online that allows the user to edit the text and export it as a document. I wanted to add Upload Image options to allow users to upload an image and display the image on the page…
ZACK_G
  • 115
  • 7
0
votes
1 answer

IFormFile is null, Razor

I'm trying to bind an image uploading but facing the problem with sending this image to the controller. I'm using Razor and .net core 2.2. My Controller [HttpPost(nameof(MealController))] [Authorize(Roles = UserRoles.Moderator)] …
0
votes
2 answers

How to upload profile pic of a user using MULTIPART/FORM-DATA?

I'm trying to upload an image (which is selected from mobile ) using MULTIPART/FORM-DATAg and couldn't figure it out as I'm a newbie to Multipart. The data that is to be Uploaded are the image(NOT AS BASE64CODE) and user id.
1 2 3
99
100