0

想法我有一个功能可以检查特定图像
的文件夹中是否存在缩略图。cache如果是,则返回该缩略图的路径。如果没有,它会继续生成图像的缩略图,将其保存在cache文件夹中并返回它的路径。

问题
假设我有 10 张图片,但其中只有 7 张的缩略图在cache文件夹中。因此,该函数会生成其余 3 张图像的缩略图。但是当它这样做时,我看到的只是一个空白的白色加载页面。这个想法是显示已经生成的缩略图,然后生成不存在的缩略图。

代码

$images = array(
        "http://i49.tinypic.com/4t9a9w.jpg",
        "http://i.imgur.com/p2S1n.jpg",
        "http://i49.tinypic.com/l9tow.jpg",
        "http://i45.tinypic.com/10di4q1.jpg",
        "http://i.imgur.com/PnefW.jpg",
        "http://i.imgur.com/EqakI.jpg",
        "http://i46.tinypic.com/102tl09.jpg",
        "http://i47.tinypic.com/2rnx6ic.jpg",
        "http://i50.tinypic.com/2ykc2gn.jpg",
        "http://i50.tinypic.com/2eewr3p.jpg"
    );

function get_name($source) {
    $name = explode("/", $source);
    $name = end($name);
    return $name;
}

function get_thumbnail($image) {
    $image_name = get_name($image);
    if(file_exists("cache/{$image_name}")) {
        return "cache/{$image_name}";
    } else {
        list($width, $height) = getimagesize($image);
        $thumb = imagecreatefromjpeg($image);
        if($width > $height) {
            $y = 0;
            $x = ($width - $height) / 2;
            $smallest_side = $height;
        } else {
            $x = 0;
            $y = ($height - $width) / 2;
            $smallest_side = $width;
        }

        $thumb_size = 200;
        $thumb_image = imagecreatetruecolor($thumb_size, $thumb_size);
        imagecopyresampled($thumb_image, $thumb, 0, 0, $x, $y, $thumb_size, $thumb_size, $smallest_side, $smallest_side);

        imagejpeg($thumb_image, "cache/{$image_name}");

        return "cache/{$image_name}";
    }
}

foreach($images as $image) {
    echo "<img src='" . get_thumbnail($image) . "' />";
}
4

1 回答 1

2

要详细说明@DCoder 的评论,您可以做的是;

  • 如果缓存中存在拇指,则像现在一样返回 URL。这将确保缓存中的拇指将快速加载。

  • 如果缓存中存在缩略图,则返回类似于/cache/generatethumb.php?http://i49.tinypic.com/4t9a9w.jpg脚本generatethumb.php生成缩略图的 URL,将其保存在缓存中并返回缩略图。下一次,它将在缓存中,并且 URL 不会通过 PHP 脚本。

于 2013-02-03T15:05:56.980 回答