0

嘿,我有一个任务,我需要制作一个画廊。我现在的这段代码只显示了图片,但我想为这些图片制作缩略图。

我怎样才能做到这一点?有什么建议么?

<html>
<head>
<style type="text/css"> 

ul {
    list-style:none;
}

</style>

</head>
<body>
<ul>
<?php
    $imgdir = 'images/';
    $allowed_types = array('png', 'jpg', 'jpeg', 'gif');
    $dimg = opendir($imgdir);
    while($imgfile = readdir($dimg)) {
        if(in_array(strtolower(substr($imgfile, -3)), $allowed_types) or in_array(strtolower(substr($imgfile, -4)), $allowed_types)) {
            $a_img[] = $imgfile; 
        }
    }
    echo "<ul>";

    $totimg = count($a_img);
    for($x=0; $x < $totimg; $x++) {
        echo "<li><img src='" . $imgdir . $a_img[$x] . "' /></li>";
    }
    echo "</ul>";

?>
</ul>
</body>
</html>
4

3 回答 3

0

试试想象库。它是强大的图像处理库。

于 2013-03-18T09:40:19.943 回答
0

这个问题/答案将帮助您,并让您了解如何重新调整图像大小。

PHP中的图像大小调整

于 2013-03-18T09:45:24.667 回答
0

您可以使用Imagick扩展程序。

像这样的东西:

<?php

header('Content-type: image/jpeg');

$image = new Imagick('tc5.jpg');

// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 0);

echo $image;

?> 

http://php.net/manual/en/imagick.cropthumbnailimage.php

于 2013-03-18T09:53:39.127 回答