Imagick::pingImageFile()函数是PHP中的内置函数,用于以轻量级方式返回图像属性。此函数用于查找有关图像的元数据,而无需将整个图像读取到内存中。
Syntex:
bool Imagick::pingImageFile( $filehandle, $fileName )
参数:该函数接受上述和以下描述的两个参数:
- $filehandle:它是必填参数。它将打开图像的文件句柄。
- $fileName:它是可选参数。它保存该图像的文件名。
返回值:成功返回True。
以下示例程序旨在说明PHP中的Imagick::pingImageFile()函数:
程序:
<?php
// Use fopen() function to open file
$fp = fopen(
"https://media.geeksforgeeks.org/wp-content/uploads/20190707132104/Capture40.jpg",
"rb");
// Create new imagick object
$im = new Imagick();
// Pass the handle to imagick
// without loading the memory
$im -> pingImageFile($fp);
// Getting height of the image
echo "The Height of the image is: " . $im->getImageHeight() . "pixel<br>";
// Getting width of the image
echo "The Width of the image is: " . $im->getImageWidth() . "pixel";
?>
输出:
The Height of the image is: 215 pixel The Width of the image is: 604 pixel
参考: https://php.net/manual/en/imagick.pingimagefile.php
相关用法
- PHP Imagick getImageCompose()用法及代码示例
- PHP Imagick getImageChannelStatistics()用法及代码示例
- PHP Imagick getImageClipMask()用法及代码示例
- PHP Imagick setImageClipMask()用法及代码示例
- PHP Imagick getImageChannelExtrema()用法及代码示例
- PHP Imagick setImageBorderColor()用法及代码示例
- PHP Imagick setImageAlphaChannel()用法及代码示例
- PHP Imagick haldClutImage()用法及代码示例
- PHP Imagick getImageBackgroundColor()用法及代码示例
- PHP Imagick getImageChannelDistortion()用法及代码示例
- PHP Imagick setImageBluePrimary()用法及代码示例
- PHP Imagick getImageBorderColor()用法及代码示例
- PHP Imagick setImageBackgroundColor()用法及代码示例
- PHP Imagick getImageChannelMean()用法及代码示例
- PHP Imagick getImagesBlob()用法及代码示例
注:本文由纯净天空筛选整理自piyush25pv大神的英文原创作品 PHP | Imagick pingImageFile() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。