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

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

PHP |想象一下 clear()函数

Imagick::clear()函数是PHP中的一个内置函数,用于清除分配给 Imagick 对象的所有资源。

句法:

bool Imagick::clear( void )

参数:此函数不接受任何参数。它只是清除了用于调用函数的 Imagick 对象的资源。

返回值:如果资源被清除,该函数返回true,否则返回false。

程序1:该程序不使用Imagick::clear()函数显示图像内容。

readImageBlob($image); 
  
// Comment the clear() function which 
// will display the image on the web page 
//$imagick->clear(); 
  
header("Content-Type: image/jpg"); 
  
// Display the output image 
echo $imagick->getImageBlob(); 
  
?>

输出:

程序 2:该程序使用 imagick::clear()函数清除关联到 imagick 对象的所有资源。

readImageBlob($image); 
  
// Comment the clear() function which 
// will display the image on the web page 
$imagick->clear(); 
  
header("Content-Type: image/jpg"); 
  
// Display the output image 
echo $imagick->getImageBlob(); 
  
?>

输出:

参考: https://www. PHP.net/manual/en/imagick.clear。 PHP