📜  PHP |想象一下 getImageLength()函数

📅  最后修改于: 2022-05-13 01:56:29.333000             🧑  作者: Mango

PHP |想象一下 getImageLength()函数

Imagick::getImageLength()函数是PHP中的一个内置函数,用于获取图像对象的字节长度。

句法:

bool Imagick::getImageLength( void)

参数:此函数不接受任何参数。

返回值:此函数以字节为单位返回图像长度。

下面的程序说明了PHP中的Imagick::getImageLength()函数:

方案一:
原图:
https://media.geeksforgeeks.org/wp-content/uploads/geeks-21.png

getImageLength();
  
// Display Result 
echo "Length of Image = " . $res;
?>

输出:

Length of Image = 45435 

方案二:
原图:
https://media.geeksforgeeks.org/wp-content/uploads/Screenshot-from-2018-10-16-23-23-54.png

getImageLength();
  
// Display Result 
echo "Length of Image = ". $res;
?>

输出:

Length of Image = 25694 

参考: http: PHP。 PHP