Hopefully this is a semi-intelligent question, since I've been trying and searching for the past few hours. As always, I'm sure it's quite simple, if you know how.. 😉
To make a long story short, I've got a page that allows a user to submit an image via http upload (JPEG usually). I then take that image, resize it (twice.. once for a gallery and once for a thumbnail), and then redirect the browser back to the main site (via "header("Location: http://server.url.com");").
At any rate, anyone who uses the ImageCopyResampleBicubic function knows, it's very nice and VERY slow.
I would like to allow the user to preform the upload, and then begin processing the image in the background (so to speak). The user needs to be redirected to the main site BEFORE the processing takes place, so he/she does not have to wait for the resamplings to be completed.
I've thought of simply placing the images in a queue and batch processing them at a later time, though I would like to avoid this, if at all possible (which I'm sure it is).
As always, I've searched, and searched some more, to no avail. Any ideas / suggestions from you fellow gurus?
Thanx in advance!