PHP循环访问当前目录文件以进行图像大小调整

时间:2013-07-21 08:35:55

标签: php image resize directory

我有一个调整图像大小的功能,这需要他们的名字。现在我想要做的只是将一个脚本放在一个目录中,运行一次,它应该在所有这些图像上运行该函数。

在另一篇文章中,我发现了一些有关DirectoryIterator的信息,但您无法将目录设为空,以便与当前文件夹相似。我该怎么做?

以下代码适用于指定文件夹(因此不是当前文件夹)

<?php
function Resize_Image($save,$file,$t_w,$t_h,$s_path,$o_path){
    $s_path = trim($s_path);
    $o_path = trim($o_path);
    $save = $s_path . $save;
    $file = $o_path . $file;
    $attrib = getimagesize($file);
    $width = $attrib[0];
    $height = $attrib[1];
    if(($width>$t_w) || ($height>$t_h)){
        $r1 = $t_w/$width;
        $r2 = $t_h/$height;
        if($r1<$r2){
            $size = $t_w/$width;
        }else{
            $size = $t_h/$height;
        }
    }else{ 
        $size=1; 
    }
    $modwidth = $width * $size;
    $modheight = $height * $size;
    $tn = imagecreatetruecolor($modwidth, $modheight);
    switch($attrib['mime']){
        case "image/gif":
            $image = imagecreatefromgif($file);
            break;
        case "image/jpeg":
            $image = imagecreatefromjpeg($file);
            break;
        case "image/png":
            $image = imagecreatefrompng($file);
        break;
    }
    imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height);
    imagejpeg($tn, $save, 100);
    return; 
}

$dir = new DirectoryIterator("files/");
foreach ($dir as $fileinfo) {
    if (!$fileinfo->isDot()) {
        $fullname = $fileinfo->getFilename();
        Resize_Image($fullname,$fullname,1366,767,'files/','files/');
    }
}
?>

1 个答案:

答案 0 :(得分:1)

有两种方法可以解决这个问题。

  1. 您可以使用PHP的“Magic Constants”之一__PATH__来显示当前文件的路径。但是,所有PHP安装都内置了这个。

  2. 函数getcwd()返回您正在查看的当前目录,该目录可能不在您的文件所在的位置。你可以试试这个:

     <?php
     chdir( dirname( __FILE__ ) );
     echo getcwd();
     ?>
    
  3. 拉出目录后,您可以按原样将其提供给脚本。希望这会有所帮助。