如何识别存储在与PHP脚本相同的文件夹中的图像是横向还是纵向?我需要将它实现到这个函数:
if ($dir = @opendir($folder))
{
while ($file = readdir($dir))
{
if (in_array(strtolower(FileExt($file)), $extensions))
{
if (!is_dir($file))
{
if (isLandsape($file))
{
$files[] = $file;
}
}
}
}
closedir($dir);
}
答案 0 :(得分:2)
这样的功能:
function isLandsape($file)
{
list($width, $height) = getimagesize($file);
return $width > $height;
}
答案 1 :(得分:1)
list($width, $height) = getimagesize($file);
if ($width > $height) {
$orientation = "Landscape"; }
else {
$orientation = "Portrait"; }