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
相关用法
- PHP Imagick morphImages()用法及代码示例
- PHP Imagick colorFloodfillImage()用法及代码示例
- PHP Imagick linearStretchImage()用法及代码示例
- PHP Imagick levelImage()用法及代码示例
- PHP Imagick setImageDispose()用法及代码示例
- PHP Imagick profileImage()用法及代码示例
- PHP Imagick coalesceImages()用法及代码示例
- PHP Imagick functionImage()用法及代码示例
- PHP Imagick smushImages()用法及代码示例
- PHP Imagick readImageBlob()用法及代码示例
- PHP Imagick identifyFormat()用法及代码示例
- PHP Imagick colorizeImage()用法及代码示例
- PHP Imagick addImage()用法及代码示例
- PHP Imagick setImageDelay()用法及代码示例
- PHP Imagick clear()用法及代码示例
注:本文由纯净天空筛选整理自piyush25pv大神的英文原创作品 PHP | Imagick pingImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。