Can I show Resized images without saving it.

See all posts See thread Reply

Re: Can I show Resized images without saving it. new!
by colin, 14 years, 6 months ago
Yes, it is possible:
$handle = new upload($_FILES['image_field']);
header('Content-type: ' . $handle->file_src_mime);
echo $handle->Process();
die();
Reply