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.

3034 questions
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
  • 9,790
  • 23
  • 109
  • 225
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.
0
votes
2 answers

How to upload an image with Alamofire inside parameters

There's a lot of similar questions on here, but i couldn't find an answer that's help me in solving this problem. What I want to do is upload an image with Alamofire with parameters and the image itself should be part of the parameters. For example…
Yasser
  • 180
  • 8
0
votes
0 answers

Serialization of 'Symfony\Component\HttpFoundation\File\File' is not allowed, Symfony4?

I've added an avatar image to my User class. When I wanted to render my edit form, I got this error Serialization of 'Symfony\Component\HttpFoundation\File\File' is not allowed I tried to solve the problem by implementing \Serializable in my User…
Dah
  • 82
  • 7
0
votes
1 answer

Multiple file upload the easy way in django

I have to create a form to make a post with fields like Title, description and images. I could successfully create a post with a single image, but when it comes to multiple images, it is not getting saved. Upon research found that i have to use a…
cappedbot
  • 45
  • 6
0
votes
3 answers

Multiple Images not uploading Only Last Select Image Uploaded

I am uploading multiple images in codeigniter framework. When i select multiple images, it upload only last selected image. Below is my controller code, where i am doing wrong? $files = $_FILES; for($i=0; $i<…
Hamza Zafeer
  • 2,052
  • 12
  • 27
  • 34
0
votes
1 answer

resize the same image 2 times

I upload images with a php script and I want to be able to change the size of an image if the image is too big and then create a thumb of the same image, right now I the image is resized but the thumb is not created for some reason...no errors…
rabidmachine9
  • 7,199
  • 10
  • 43
  • 58
0
votes
1 answer

Add img from FileReader to latest class | FileReader gets executed after loop

Im rebuilding a multiple image upload function. But i came across with the problem that fileReader() is executed after the whole loop. Inside the loop im cloning foreach dragged image a container expect first one. This container has the class and id…
delato468
  • 424
  • 2
  • 15
0
votes
2 answers

Ways to upload files from mobile app to S3 bucket without the management console

I wanted to know if I can accomplish my aim of uploading files or large files from my mobile application to my s3 bucket without login into my amazon console. If there is no way to do this, then. How can I upload files once logged in without the…
0
votes
1 answer

How to use getImagesize() for an uploaded file before it gets saved into the server?

Given that getImagesize() requires a string and $_FILES['myfile'] is an array, I've tried to get to the temporary folder and the file uploaded there in order to get the image size, but I do get an error. This is the error that I get: Warning: …
Rosamunda
  • 13,549
  • 8
  • 31
  • 60
0
votes
1 answer

CKEditor text fields in FileManager dialog contents area not working (alternative text, width, height,...)

I am using ckeditor4-react package in my react app. When I want to add image to text, file browser is opening, I select the image or upload the image but I cannot change the size of the image or add alternate text. Because text fields are disabled.…
0
votes
0 answers

Slow Image Upload Speed In Wordpress

Good day, I am having some problems with the WordPress crunching all my images which really slows down the process of uploading images. Is there any way of removing the Flash Uploader. I have already added the following code to all the function.php…
Jaco
  • 1
1 2 3
99
100