PHP Conference Japan 2024

Imagick::getImageWidth

(PECL imagick 2, PECL imagick 3)

Imagick::getImageWidth返回图像宽度

描述

public Imagick::getImageWidth(): int

返回图像宽度。

参数

此函数没有参数。

返回值

返回图像宽度。

错误/异常

发生错误时抛出 ImagickException。

添加注释

用户贡献的注释 3 条注释

bob at majdak dot net
9 年前
我注意到,当打开图像时,它返回的是图像的原始大小,而不是使用 scaleImage 或 resizeImage 可能调整到的尺寸。
terry
10 年前
<?php

$image
= new Imagick("picture.jpg");
$width = $image->getImageWidth();
print
"the image width is " . $width . " pixels";

?>

将打印
图像宽度为 200 像素
nospam dot karst at onlinq dot nl
9 年前
"bob at majdak dot net"提到此函数不返回调整大小后的图像尺寸。

我在生产代码中使用此函数,它会正确返回使用`resizeImage()`调整大小的图像宽度。
我没有使用`scaleImage()`测试过。
To Top