I’m trying to upload more than one image at once but resizing the images on the client side because PHP runs out of memory if they uploaded image is bigger than a few MB (people use to upload 3-4MB images from they phone camera).
I’ve done this before but only with one image, encoding it and decoding in base64, etc. ¿How could I do that with multiple images?
But that’s not the only thing I’m looking for. Once the files are uploaded to a directory, I want the users to have the posibility to delete them.
I’ve tried elFinder File Manager with its auto-resize function, but it does it on the server via AJAX and it can’t handle big images, so it’s not an option. It also gives me an backend error response.
So…what’s the best option for me? Is there any gallery or multiuploader with the features I need? Do I have to code it from the scratch by myself?
Though you may want another 3rd party library (or one of your own) to manage the uploaded images, it is quite a good choice for the image uploader. You may use it as a pre-fabricated widget, or you may also construct your own uploader using Plupload’s API.