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


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


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

用法:

int Imagick::getImageWidth( void )

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


Original Image

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

<?php  
// require_once('path/vendor/autoload.php'); 
  
// Create an Imagick Object 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); 
  
// Function to get the width of image 
$width = $image->getImageWidth(); 
  
// Display the image width in pixel. 
print_r($width); 
?>

輸出:

667

相關文章:

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



相關用法


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