Can I show Resized images without saving it.

See all posts Reply

Can I show Resized images without saving it. new!
by enatom, 14 years, 6 months ago
I want to show a resized (thumbnail) of an image i have, but I don't want to save it.

So I just want to show it on the fly. Is this possible?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