Possible Duplicate:
Efficient JPEG Image Resizing in PHP
Non blocking functions PHP
I am creating a system where a user will be able to upload images via a file manager system.
I assume the user to simply upload files directly from their camera so the image will be full size in my filesystem.
I have the images address within my filesystem. ($img = http://www.mysite.com/files/image.jpg)
Is there a way with php to take that address ($img) and before the image is rendered on the page resample and resize the image, ensuring that if there are alot of these images on a single page load speeds won't suffer too much.
Any help is really appreciated.