嘿,我有一个任务,我需要建立一个画廊。这段代码我现在只是显示图片,但我想为这些图片制作缩略图。
我该怎么做?有什么建议吗?
<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>
答案 0 :(得分:0)
试试Imagine库。它是功能强大的图像处理库。
答案 1 :(得分:0)
此问题/答案将对您有所帮助,并为您提供如何重新调整图像大小的建议。
答案 2 :(得分: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;
?>