📜  PHP | Gmagick getimagewidth()函数

📅  最后修改于: 2022-05-13 01:56:55.331000             🧑  作者: Mango

PHP | Gmagick getimagewidth()函数

Gmagick::getimagewidth()函数是PHP中的一个内置函数,用于获取图像的宽度,即图像的水平长度。

句法:

int Gmagick::getimagewidth( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个包含图像宽度的整数值。

异常:此函数在错误时抛出 GmagickException。

下面给出的程序说明了PHP中的Gmagick::getimagewidth()函数

方案一:

getimagewidth();
echo $width;
?>

输出:

667

方案二:

scaleimage(200, 200);
   
// Get the image width
$width = $gmagick->getimagewidth();
echo $width;
?>

输出:

200

参考: https://www. PHP.net/manual/en/gmagick.getimagewidth。 PHP