My clients are on a hosting provider where the max upload size is 1Mb, and I can't increase that limit. They want to be able to upload images bigger than 1Mb, and have the server resize them.
I would like to reduce the image filesize (in any possible way, reducing width/height is an option) before it gets uploaded and processed by php.
I've seen some jQuery plugins that allow you to crop a part of the picture before uploading it, but that's not exactly what I'd like.
Ideally I would use a plugin that intercepts the form submission, reduces the image's size and then proceeds submitting the form. Although I haven't found such a plugin so far. In case there is nothing already developed to solve this, is there any way of doing this?