0

所以,我有这门课是一半的工作。不知何故,我无法复制上传图像的重新调整大小的样本,只有一个具有“正确”尺寸的黑色“正方形”(拧紧尺寸,只要拇指清晰。一次一步)。

我为 WOT 感到抱歉,但它让我发疯了。提前致谢。

    <?php 
    class Upload {
#function from http://stackoverflow.com/a/10666106/587811
public function resize_values($origWidth,$origHeight,$maxWidth = 200,$maxHeight = 200){
    #check for longest side, we'll be seeing that to the max value above
    if($origHeight > $origWidth){ #if height is more than width
        $newWidth = ($maxHeight * $origWidth) / $origHeight;
        $retval = array(width => $newWidth, height => $maxHeight);
    }
    else{
        $newHeight= ($maxWidth * $origHeight) / $origWidth;
        $retval = array(width => $origWidth, height => $newHeight);
}
    return $retval;
}
public function image($picurl, $file, $path="images/uploaded/") {
    echo "function chamada!";
    if ($picurl) {
        $picFileName=rand(1,9999).$_SESSION['id'];
        $picExt=substr(strstr($picurl,'.'),1,3);
        $picExt=strtolower($picExt);
        $allowed = array("jpg","png","gif","bmp");
        if (in_array($picExt,$allowed)) {
            if (getimagesize($file)) {
                $picNewName=str_replace(" ","_",$picFileName.'.'.$picExt);
                $picWhereTo=$path.$picNewName;
                $copy=move_uploaded_file($file, $picWhereTo);       
                if ($copy) {

                    list($width, $height) = getimagesize($picWhereTo);
                    $size = $this->resize_values($width,$height,250,250);
                    $thumb = imagecreatetruecolor($size['width'],$size['height']);
    imagealphablending($thumb, false);
                    $source = imagecreatefromjpeg($picWhereTo);
                    imagecopyresized($thumb,$source,0,0,0,0,$size['width'],$size['height'],$width,$height);
                    $picNewName=$picFileName.'_thumb.'.$picExt;
                    imagejpeg($thumb,$path.$picNewName);

                    $picinfo['where']=$picWhereTo;
                    $picinfo['name']=$picNewName;
                    return $picinfo;
                }
                else return false;
            }
            else return false;
        }
        else return false;
    }
}
    }
    ?>
4

2 回答 2

1

改变你的

$source = imagecreatefromjpeg($file);

$source = imagecreatefromjpeg($picWhereTo);

这就是你调用函数的方式

$objoflclass->image($_FILES['img']['name'],$_FILES['img']['tmp_name'],'');

其中 $_FILES['img'] 是图像上传字段的名称,我相信您可以从中了解问题所在

于 2013-02-19T05:41:34.740 回答
1

我遇到了类似的问题。这与具有透明度的png有关。

使用 imagecreatetruecolor() 创建 $thumb 后试一试;

imagealphablending($thumb, false);

我不完全确定这是解决方案 - 但我认为它走在正确的轨道上。您的真实颜色支持 alpha 混合 - 它在 jpeg 的背景中混合 - 它可能会因缺乏信息而感到困惑。

如果这不起作用,请描述您要上传的确切图像格式,以便我们试一试,看看会发生什么。

于 2013-02-18T18:39:22.867 回答