识别图像是横向还是纵向

时间:2014-03-15 12:33:16

标签: php image image-processing

如何识别存储在与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);
}

2 个答案:

答案 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"; }