Php 如何将文件名传递给函数,循环并裁剪图像?

Php 如何将文件名传递给函数,循环并裁剪图像?,php,image-processing,Php,Image Processing,我正在尝试裁剪一个图像列表。该列表存储在txt文件中 我运行txt文件并将img URL存储到一个数组中 Array ( [0] => img001.jpg [1] => img002.jpg [2] => img003.jpg [3] => img004.jpg ) .php、.txt和.jpg图像都在同一个文件夹中,并且有一个子文件夹IMG2 我在本地运行这个 我加载文件时出错,但现在我只看到一个空白屏幕 有人能帮我通过数组中的文件进行循环吗。我意识到,在下面的例

我正在尝试裁剪一个图像列表。该列表存储在txt文件中

我运行txt文件并将img URL存储到一个数组中

Array ( [0] => img001.jpg [1] => img002.jpg [2] => img003.jpg [3] => img004.jpg ) 
.php、.txt和.jpg图像都在同一个文件夹中,并且有一个子文件夹IMG2

我在本地运行这个

我加载文件时出错,但现在我只看到一个空白屏幕

有人能帮我通过数组中的文件进行循环吗。我意识到,在下面的例子中,我只是从$line[1]中发送了一个值,这是因为我甚至无法让它工作

一旦成功了,那么添加FOR循环应该是直接的

谢谢

    <?PHP
error_reporting(E_ALL);
ini_set('display_errors', '1');

$fd = fopen ("files.txt", "r");
while (!feof ($fd))
{
   $buffer = fgets($fd, 4096);
   $lines[] = $buffer;
}
fclose ($fd); 

print_r($lines);

$imgurl = $lines[1]; 

processImage($imgurl);  //or below line doesn't work
//foreach ($lines as $imgurl) processImage(trim($imgurl));

Function processImage($imgurl) {
    //load the image

    $img = @imagecreatefromjpeg($imgurl);

    if (!$img) { /* See if it failed */
        $img  = imagecreatetruecolor(150, 30); /* Create a black image */
        $bgc = imagecolorallocate($img, 255, 255, 255);
        $tc  = imagecolorallocate($img, 0, 0, 0);
        imagefilledrectangle($img, 0, 0, 150, 30, $bgc);
        /* Output an errmsg */
        imagestring($img, 1, 5, 5, "Error loading $imgurl", $tc);
    }
    return $img;

    $b_top = 0;
    $b_btm = 0;
    $b_lft = 0;
    $b_rt = 0;

    //top
    for(; $b_top < imagesy($img); ++$b_top) {
      for($x = 0; $x < imagesx($img); ++$x) {
        if(imagecolorat($img, $x, $b_top) != 0xFFFFFF) {
           break 2; //out of the 'top' loop
        }
      }
    }

    //bottom
    for(; $b_btm < imagesy($img); ++$b_btm) {
      for($x = 0; $x < imagesx($img); ++$x) {
        if(imagecolorat($img, $x, imagesy($img) - $b_btm-1) != 0xFFFFFF) {
           break 2; //out of the 'bottom' loop
        }
      }
    }

    //left
    for(; $b_lft < imagesx($img); ++$b_lft) {
      for($y = 0; $y < imagesy($img); ++$y) {
        if(imagecolorat($img, $b_lft, $y) != 0xFFFFFF) {
           break 2; //out of the 'left' loop
        }
      }
    }

    //right
    for(; $b_rt < imagesx($img); ++$b_rt) {
      for($y = 0; $y < imagesy($img); ++$y) {
        if(imagecolorat($img, imagesx($img) - $b_rt-1, $y) != 0xFFFFFF) {
           break 2; //out of the 'right' loop
        }
      }
    }

    //copy the contents, excluding the border
    $newimg = imagecreatetruecolor(imagesx($img)-($b_lft+$b_rt), imagesy($img)-($b_top+$b_btm));

    imagecopy($newimg, $img, 0, 0, $b_lft, $b_top, imagesx($newimg), imagesy($newimg));

    //finally, output the image
    header("Content-Type: image/jpeg");
    imagejpeg($newimg);

    // Save the image
    $newname = "t_".$imgurl;
    imagejpeg($newimg, $newname);

    // Free up memory   
    imagedestroy($newimg);
    imagedestroy($img);


}

?>

在图像处理功能的顶部,有一行:

return $img;
因此,它总是从那里的函数返回,之后的代码永远不会到达


只需删除这一行就可以让您走得更远。

只需执行
foreach($imgurl)processImage(trim($imgurl))那不行。我不知道为什么,但是将文件名字符串传递给函数似乎不起作用。谢谢。我用了你的foreach行或者ForThanks,就这样。你和弗朗西斯科的反应让我得到了我需要的答案。