当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick pingImage()用法及代码示例


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

用法:

bool Imagick::pingImage( $filename )

参数:该函数接受单个参数$filename,该参数保存图像的文件名。


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

以下示例程序旨在说明PHP中的Imagick::pingImage()函数:

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

<?php 
  
// Create new Imagick object 
$image = new Imagick(); 
  
// Use Imagick::pingImage() function to the image 
$image->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<br>"; 
echo "Height of image: " . $height . "px"; 
  
?>

输出:

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

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



相关用法


注:本文由纯净天空筛选整理自piyush25pv大神的英文原创作品 PHP | Imagick pingImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。