Gmagick::getimagecompose()函数是PHP中的内置函数,用于获取与图像关联的复合运算符。复合运算符决定用于图像合成的方法。复合运算符可以是给定COMPOSITE OPERATOR常数中的任何一个。
用法:
int Gmagick::getimagecompose( void )
参数:此函数不接受任何参数。
返回值:该函数返回一个包含compose运算符的整数值。
异常:此函数在错误时引发GmagickException。
下面给出的程序说明了PHP中的Gmagick::getimagecompose()函数:
程序1:
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Get the image compose
$compose = $gmagick->getimagecompose();
echo $compose;
?>
输出:
1 // Which is the default composite operator for all Gmagick object.
程序2:
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Set the image compose
$gmagick->setimagecompose(Gmagick::COMPOSITE_COLORIZE);
// Get the image compose
$compose = $gmagick->getimagecompose();
echo $compose;
?>
输出:
28
参考: https://www.php.net/manual/en/gmagick.getimagecompose.php
相关用法
- PHP Imagick getImageCompose()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick setfilename()用法及代码示例
- PHP Gmagick separateimagechannel()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick readimageblob()用法及代码示例
- PHP Gmagick getimageblueprimary()用法及代码示例
- PHP Gmagick getimageresolution()用法及代码示例
- PHP Gmagick setimageresolution()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick getimagecompose() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。