當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Imagick pingImageFile()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自piyush25pv大神的英文原創作品 PHP | Imagick pingImageFile() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。