📜  PHP | Gmagick getimagecompose()函数

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

PHP | Gmagick getimagecompose()函数

Gmagick::getimagecompose()函数是PHP中的一个内置函数,用于获取与图像关联的复合运算符。合成运算符决定用于图像合成的方法。复合运算符可以是给定 COMPOSITE OPERATOR 常量中的任何人。

句法:

int Gmagick::getimagecompose( void )

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

返回值:此函数返回一个包含 compose运算符的整数值。

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

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

方案一:

getimagecompose();
echo $compose;
?>

输出:

1 // Which is the default composite operator for all Gmagick object.

方案二:

setimagecompose(Gmagick::COMPOSITE_COLORIZE);
  
// Get the image compose
$compose =  $gmagick->getimagecompose();
echo $compose;
?>

输出:

28

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