📜  PHP | Gmagick current()函数

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

PHP | Gmagick current()函数

Gmagick::current()函数是PHP中的一个内置函数,用于返回当前 Gmagick 对象的引用。此函数不会创建任何副本,而是返回相同的 Gmagick 实例。

句法:

Gmagick Gmagick::current( void )

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

返回值:此函数在成功时返回 Gmagick 对象。

异常:此函数在错误时抛出 GmagickException。

下面给出的程序说明了PHP中的Gmagick::current()函数

使用图像:

方案一:

current();
  
// Output the new Gmagick object image to browser
header('Content-type: image/png');  
echo $gmagicknew;  
?>  

输出:

方案二:

current();
  
// Apply blur to new object
$gmagicknew->blurimage(20, 2);
  
// Output the image to browser
header('Content-type: image/png');  
echo $gmagicknew;  
?>  

输出:

参考: https://www. PHP.net/manual/en/gmagick.current。 PHP