正在获取未压缩的图像大小



我有一个小的PHP脚本,可以将图像文件转换为缩略图。我的上传器最大有100MB,我想保留它。

问题是,当打开文件时,GD会对其进行解压缩,导致其庞大,并导致PHP内存不足(Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 64000 bytes))。我不想增加我的内存超过这个允许的大小。

我不在乎图像,我可以让它显示一个默认的缩略图,这很好。但我确实需要一种方法来捕捉imagecreatefromstring(file_get_contents($file))在图像太大时产生的错误。

由于产生的错误是致命的,因此无法尝试捕获它,并且由于它在一个命令中加载,因此我无法继续关注它以确保它不会接近极限。在尝试处理之前,我需要一种方法来计算图像的大小

有办法做到这一点吗?filesize无法工作,因为它给了我压缩的大小。。。

我的代码如下:

$image = imagecreatefromstring(file_get_contents($newfilename));
$ifilename = 'f/' . $string . '/thumbnail/thumbnail.jpg';
$thumb_width = 200;
$thumb_height = 200;
$width = imagesx($image);
$height = imagesy($image);
$original_aspect = $width / $height;
$thumb_aspect = $thumb_width / $thumb_height;
if ( $original_aspect >= $thumb_aspect )
{
    // Image is wider than thumbnail.
    $new_height = $thumb_height;
    $new_width = $width / ($height / $thumb_height);
}
else
{
    // Image is taller than thumbnail.
    $new_width = $thumb_width;
    $new_height = $height / ($width / $thumb_width);
}
$thumb = imagecreatetruecolor( $thumb_width, $thumb_height );
// Resize and crop
imagecopyresampled($thumb,
                   $image,
                   0 - ($new_width - $thumb_width) / 2, // Center the image horizontally
                   0 - ($new_height - $thumb_height) / 2, // Center the image vertically
                   0, 0,
                   $new_width, $new_height,
                   $width, $height);
imagejpeg($thumb, $ifilename, 80);

在重新调整大小之前是否尝试查看原始图像大小?也许将其乘以基于平均格式压缩的一组%?

$averageJPGFileRatio = 0.55;
$orgFileSize = filesize ($newfilename) * 0.55;

在做任何工作之前看一下?

次要想法

这样计算:width * height * 3 = filesize如果使用alpha通道处理图像,则3表示红色、绿色和蓝色值,使用4而不是3。这应该可以让您非常接近地估计位图大小。不考虑标头信息,但在几个字节处应该可以忽略不计。

最新更新