gpt4 book ai didi

php - 获取图片名称、分辨率、路径、扩展名和fileszie

转载 作者:行者123 更新时间:2023-12-05 07:59:50 24 4
gpt4 key购买 nike

我一直在工作,但无法获得任何解决方案。我有一个名为“下载”的文件夹,其中包含多个图像,我的任务是回显所有图像并在其旁边显示相应的图像名称,路径分辨率、扩展名和文件大小。有人可以帮忙吗?

我已经能够显示所有图像了..

图片存放路径为“C:\xampp\htdocs\2in1 file\download”

这是我的代码:

<?php

$files = glob("download/*.*");
echo"<table border=1>";
echo"<tr>";
echo"<td>";
echo"Preview";
echo"</td>";
echo"<td>";
echo"Name";
echo"</td>";
echo"<td>";
echo"Extension";
echo"</td>";
echo"<td>";
echo"Resolution";
echo"</td>";
echo"<td>";
echo"File Size";
echo"</td>";
echo"<td>";
echo"Path";
echo"</td>";
echo"</tr>";
for ($i=0; $i<count($files); $i++) {
$image = $files[$i];

echo"<tr>";
echo"<td>";
echo '<img src="'.$image .'" alt="Random image" width="100px" height="100px" />';
echo"</td>";


}
echo"</table>";
?>

最佳答案

希望对你有帮助

<?php

$files = glob("download/*.*");
echo"<table border=1>";
for ($i = 0; $i < count($files); $i++) {
$image = $files[$i];
$path = pathinfo($image);
$name = $path['filename'];
$ext = $path['extension'];
list($width, $height) = getimagesize($image);
$resolution = $width . ' x ' . $height . ' Pexel';
$path = $path['dirname'];
$size = filesize($image);

echo"<tr>";
echo"<td>";
echo '<img src="' . $image . '" alt="Random image" width="100px" height="100px" />';
echo"</td>";
echo"<td>";
echo $name;
echo"</td>";
echo"<td>";
echo $ext;
echo"</td>";
echo"<td>";
echo $resolution;
echo"</td>";
echo"<td>";
echo $size . ' Byte';
echo"</td>";
echo"<td>";
echo $path;
echo"</td>";
}
echo"</table>";
?>

关于php - 获取图片名称、分辨率、路径、扩展名和fileszie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20538777/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com