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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。