获取网络图片的宽度和高度

// 获取网络图片的宽度和高度
if (!function_exists('widht_gt_height')) {
function widht_gt_height($webImage)
{
// 获取图片信息
$imageInfo = @getimagesize($webImage);
// 检查是否成功获取图片信息
if ($imageInfo === false) {
return true;
}
// 提取图片宽度和高度
$width = 0;
if (isset($imageInfo[0]) && !empty($imageInfo[0])) {
$width = $imageInfo[0];
}
$height = 0;
if (isset($imageInfo[1]) && !empty($imageInfo[1])) {
$height = $imageInfo[1];
}
if ($width > $height) {
return true;
}
return false;
}
}