View Single Post
Old 12-14-2005, 12:00 AM   #2 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default

http://us2.php.net/imagejpeg
PHP Code:
//Grab new image
ob_start();
ImageJPEG($new_image);
$image_buffer ob_get_contents();
ob_end_clean();
ImageDestroy($new_image);
//Create temporary file and write to it
$fp tmpfile();
fwrite($fp$image_buffer)) {
rewind($fp); 

office politics is offline