php filesize()始终返回相同的值

时间:2013-05-22 15:30:56

标签: php image gd

我正在尝试通过PHP上传图片。在上传时,应调整大小,使其'尺寸与我在config [] - 数组中定义的尺寸一样大,并且其'filesize也小于或等于我的config [] - 数组中的预定义值。但不知何故,方法getFileSize()总是返回相同的大小,即使在调整图像大小后也是如此。

这是我的代码。说明如下。

$tries = 0;
while ( $image->getFileSize() > $config['image_max_file_size'] && $tries < 10 ) {
    $factor = 1 - (0.1 * $tries);

    echo $image->getFileSize().PHP_EOL;
    if ( !$image->resize($config['image_max_width'], $config['image_max_height'], $factor) ) {
            return false;
    }

    $tries++;
}

$ image 是Picture类型的对象,它只是我需要修改图片所需的所有函数的包装类。

$ config 是我的配置数组,其中包含所有类型的预定义值。

$ tries 保存允许的尝试次数。允许程序调整图像大小不超过10次。

getFileSize()通过返回文件大小(路径)返回image-filesize

调整大小(maxWidth,maxHeight,factor)将图像大小调整为参数中提到的大小。调整图片大小后,它会将结果保存到相同的路径,从中读取文件大小。

我将发布resize()和getFileSize()方法,因为它可能会让您感兴趣:

function resize($neededwidth, $neededheight, $factor) {

    $oldwidth = $this->getWidth($this->file_path);
    $oldheight = $this->getHeight($this->file_path);
    $neededwidth = $neededwidth * $factor;
    $neededheight = $neededheight * $factor;
    $fext = $this->getInnerExtension();

    $img = null;
    if ($fext == ".jpeg" ) {
        $img = imagecreatefromjpeg($this->file_path);
    } elseif ($fext == ".png") {
        $img = imagecreatefrompng($this->file_path);
    } elseif ($fext == ".gif") {
        $img = imagecreatefromgif($this->file_path);
    } else {
        return false;
    }

    $newwidth = 0;
    $newheight = 0;
    if ($oldwidth > $oldheight && $oldwidth > $neededwidth) { // Landscape Picture
        $newwidth = $neededwidth;
        $newheight = ($oldheight / $oldwidth) * $newwidth;      
    } elseif ($oldwidth < $oldheight && $oldheight > $neededheight) { // Portrait Picture
        $newheight = $neededheight;
        $newwidth = ($oldwidth / $oldheight) * $newheight;
    }

    $finalimg = imagecreatetruecolor($newwidth,$newheight);
    imagecopyresampled($finalimg, $img, 0, 0, 0, 0, $newwidth, $newheight, $oldwidth, $oldheight);

    if ($fext == ".jpeg" ) {
        if ( !imagejpeg($finalimg, $this->file_path, 100) ) return false;
    } elseif ($fext == ".png") {
        if ( !imagepng($finalimg, $this->file_path, 9) ) return false;
    } elseif ($fext == ".gif") {
        if ( !imagegif($finalimg, $this->file_path) ) return false;
    } else {
        return false;
    }

    imagedestroy($img);
    return true;
}

getFileSize()

function getFileSize() {

        return filesize($this->file_path);
}

谢谢!

1 个答案:

答案 0 :(得分:6)

尝试http://www.php.net/manual/en/function.clearstatcache.php

function getFileSize() {
    clearstatcache();
    return filesize($this->file_path);
}