PHP中的imagecopyresampled错误

时间:2013-02-25 19:39:24

标签: php image-resizing

我在这里不知所措。我已成功上传所有内容并使用imagejpeg()命令调整了文件的质量,但是,我的imagecopyresampled函数似乎给了我一个错误:

警告:imagecopyresampled()要求参数1为资源,第394行给出的字符串

    $imgRaw = $_FILES[$file]['name'];
    $imgRawTemp = $_FILES[$file]['tmp_name'];

    $nameExtract = explode(".", $imgRaw);

    $ext = $nameExtract[count($nameExtract)-1];

    $imgAll = getimagesize($_FILES[$file]['tmp_name']);

    $uploadedName = time().uniqid()."_original.";

    $dir = "usrPld/";

    $thisImg = $dir.$uploadedName.$ext;

    if($imgAll['mime'] == 'image/jpeg' || $imgAll['mime'] == 'image/png')
    {
        if(move_uploaded_file($imgRawTemp, $thisImg))
        {

            list($width, $height, $type, $attr) = $imgAll;

            $thumbnailWidth = 250;
            $viewingWidth = 910;

            $thumbHeight = $thumbnailWidth*($height/$width);
            $viewingHeight = $viewingWidth*($height/$width);

            if($imgAll['mime'] == 'image/jpeg')
            {
                $image = imagecreatefromjpeg($thisImg);
            }
            else if($imgAll['mime'] == 'image/png')
            {
                $image = imagecreatefrompng($thisImg);
            }

            $newName = time().uniqid().".jpg";
            $newName2 = time().uniqid().".jpg";

            if($width > $viewingWidth)
            {
                if(imagejpeg($image, $dir.$newName, 100))
                {
                    if(imagecopyresampled($dir.$newName2, 
                            $dir.$newName, 
                            0, 0, 0, 0, 
                            $viewingWidth, 
                            $viewingHeight, 
                            $width, 
                            $height))
                    {
                        unlink($thisImg);
                        unlink($dir.$newName);
                    }
                }
            }
            else
            {
                if(imagejpeg($image, $dir."no_".$newName, 100))
                {
                    unlink($thisImg);
                }
            }
        }
    }
    else
    {
        return "format error";
    }

奇怪的是,我检查了$height(因为那是错误指向的地方)并且它输出了一个类似的数字。

感谢您的帮助。

1 个答案:

答案 0 :(得分:3)

$ height不是你的问题。您将目录路径作为前两个参数传递给imagecopyresampled(),但它们需要是图像资源。所以你需要先做这样的事情:

$destImage = imagecreatetruecolor($viewingWidth, $viewingHeight);
$sourceImage = imagecreatefromjpeg($dir.$newName);

然后将它们传递给你的函数:

if(imagecopyresampled($destImage, 
                        $sourceImage, 
                        0, 0, 0, 0, 
                        $viewingWidth, 
                        $viewingHeight, 
                        $width, 
                        $height))

然后,大概你想要将$ destImage写入$ dir。$ newName2路径。