Quote:
Originally Posted by triste
oh, right, can't use filesize. ob works for me. to think about it, the final output depends on imagejpeg, so there's no other way to get the size (i think). unless you make a temp file...
|
PHP Code:
// get dimensions of image before popping it off.
$size_y = imagesy($thumb['data']);
$size_x = imagesx($thumb['data']);
// capture new image for streaming
ob_start();
imagejpeg($thumb['data'],'',75);
$thumbdata = ob_get_contents();
ob_end_clean();
// clean up GD
imagedestroy ($thumb['data']);
//get filelength
$image_file_length = strlen($thumbdata);
Try that.