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


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