我可以使用ImageMagick来确定X轴和Y轴的长度吗?

问题描述 投票:1回答:1

我从API获取图像,并且根据参数,有时它处于横向模式,有时是纵向。我可以硬编码检查参数设置以确定模式是什么,但我宁愿检查图像并弄清楚。 identify返回的“Orientation”字段是“Undefined” - 还有另一种方法让我弄清楚方向是什么吗?

php imagemagick
1个回答
1
投票

此方法仅返回widthheight作为关联数组:getImageGeometry

使用Imagick图像尺寸计算出风景或肖像的示例:

$filename = '/path/to/image.jpg';
$image = new imagick($filename);
$size = $image->getImageGeometry();
$orientation = ( $size['width'] > $size['height'] ) ? 'landscape' : 'portrait';
echo $orientation;

如果你有一个'方形'图像......它将被视为'肖像'。你可以调整它是否重要。

© www.soinside.com 2019 - 2024. All rights reserved.