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


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


Imagick::getImageHeight()函數是PHP中的內置函數,用於獲取圖像的高度。

用法:

int Imagick::getImageHeight( void )

參數:該函數不接受任何參數。
返回值:此函數返回以像素為單位的圖像高度。


Original Image:

以下示例程序旨在說明PHP中的Imagick::getImageHeight()函數:
程序:

<?php  
// require_once('vendor/autoload.php'); 
  
// Create an Imagick Object 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); 
  
// getImageHeight function to calculate image height 
  
$height = $image->getImageHeight(); 
  
// Display the height of image 
print_r($height); 
?>

輸出:

184

相關文章:

參考: http://php.net/manual/en/imagick.getimageheight.php



相關用法


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