📜  PHP |想象一下 pingImage()函数

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

PHP |想象一下 pingImage()函数

Imagick::pingImage()函数是PHP中的一个内置函数,用于获取图像的基本属性。该方法用于查询图像的宽度、高度、大小和格式,而无需将整个图像读入内存。

句法:

bool Imagick::pingImage( $filename )

参数:此函数接受单个参数$filename ,其中包含图像的文件名。

返回值:此函数在成功时返回 True。

下面的程序说明了PHP中的 Imagick::pingImage()函数:

程序:该程序借助图像链接告诉图像的高度和宽度。

pingImage(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-6.png');
  
// Use getImageWidth() function to for image width attribute
$width = $image->getImageWidth();
  
// Use getImageHeight() function to for image width attribute
$height = $image->getImageHeight();
  
// Display the output
echo "Width of image: " . $width . "px
"; echo "Height of image: " . $height . "px";    ?>

输出:

Width of image: 600px
Height of image: 135px

参考: https://www. PHP.net/manual/en/imagick.pingimage。 PHP