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


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


Imagick::getImageLength()函數是PHP中的內置函數,用於獲取圖像對象的長度(以字節為單位)。

用法:

bool Imagick::getImageLength( void)

參數:該函數不接受任何參數。


返回值:此函數返回以字節為單位的圖像長度。

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

示例1:
原始圖片:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

<?php 
  
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); 
  
// Getting Length of image 
// using getimagerelength function 
$res = $imagick->getImageLength(); 
  
// Display Result  
echo "Length of Image = " . $res; 
?>

輸出:

Length of Image = 45435 

示例2:
原始圖片:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png

<?php 
  
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54-1.png'); 
  
// Getting Length of image 
// using getimagerelength function 
$res = $imagick->getImageLength(); 
  
// Display Result  
echo "Length of Image = ". $res; 
?>

輸出:

Length of Image = 25694 

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



相關用法


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