class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
more info about the class
$handle = new upload($_FILES['image_field']); header('Content-type: ' . $handle->file_src_mime); header("Content-Disposition: attachment; filename=".rawurlencode($handle->file_src_name).";"); echo $handle->Process(); die();
I would like to "create new image" with some modification with class.upload on the fly (not really save image) then, force download.
on example, force download using this code :
i just try many combination, but i can't modify the image with upload class.
some body help me.
thanks
Ray