1

我在上传原始 jpeg 文件时生成缩略图。我实际上可以创建这些缩略图文件并将其移动到另一个目录,但问题是这些缩略图文件在上传时仅显示黑色。

我的代码。

if(isset($_POST['upload'])){
    $img = $_FILES['origin']['name'];
    move_uploaded_file($_FILES['origin']['tmp_name'], 'image/'.$img);

    define("SOURCE", 'image/');
    define("DEST", 'thumb/');
    define("MAXW", 120);
    define("MAXH", 90);

    $jpg = SOURCE.$img;

    if($jpg){
        list($width, $height, $type) = getimagesize($jpg); //$type will return the type of the image

        if(MAXW >= $width && MAXH >= $height){
            $ratio = 1;
        }elseif($width > $height){
            $ratio = MAXW / $width;
        }else{
            $ratio = MAXH / $height;
        }

        $thumb_width = round($width * $ratio); //get the smaller value from cal # floor()
        $thumb_height = round($height * $ratio);

        $thumb = imagecreatetruecolor($thumb_width, $thumb_height);

        $path = DEST.$img."_thumb.jpg";
        imagejpeg($thumb, $path);

        echo "<img src='".$path."' alt='".$path."' />";
    }
    imagedestroy($thumb);
}

缩略图文件如下所示:

在此处输入图像描述

4

2 回答 2

3

来自php手册:

imagecreatetruecolor() returns an image identifier representing a black image of the specified size.

所以问题是你实际上创建了这个黑色图像并保存它。

$thumb = imagecreatetruecolor($thumb_width, $thumb_height);

有关调整大小的解决方案,请参阅stackoverflow 上的这个问题

于 2012-06-17T17:30:51.053 回答
2

嗯,我现在才发现我的错误。问题是我使用$jpg = SOURCE.$img;而不是,$jpg = imagecreatefromjpeg($jpg);而且我需要使用将示例图像复制到新的缩略图图像

imagecopyresampled( $thumb, $jpg, 0, 0, 0, 0, $thumb_width, $thumb_height, $width, $height );

然后就可以了!!!

感谢亚历克斯的回答,让我找到了这个解决方案。

于 2012-06-17T17:46:25.117 回答