我从API获取图像,并且根据参数,有时它处于横向模式,有时是纵向。我可以硬编码检查参数设置以确定模式是什么,但我宁愿检查图像并弄清楚。 identify
返回的“Orientation”字段是“Undefined” - 还有另一种方法让我弄清楚方向是什么吗?
此方法仅返回width
和height
作为关联数组:getImageGeometry
使用Imagick图像尺寸计算出风景或肖像的示例:
$filename = '/path/to/image.jpg';
$image = new imagick($filename);
$size = $image->getImageGeometry();
$orientation = ( $size['width'] > $size['height'] ) ? 'landscape' : 'portrait';
echo $orientation;
如果你有一个'方形'图像......它将被视为'肖像'。你可以调整它是否重要。