【发布时间】:2016-02-08 22:09:29
【问题描述】:
我有一个小的 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);
【问题讨论】:
标签: php image thumbnails gd filesize