当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick getImageChannelExtrema()用法及代码示例


Imagick::getImageChannelExtrema()函数是PHP中的一个内置函数,用于获取一个或多个图像通道的极值。极值是观察到函数最大值或最小值的点。它返回带有键“minima”和“maxima”的关联数组。

用法:

array Imagick::getImageChannelExtrema(int $channel)

参数:该函数接受单个参数$channel,该参数指定对您的通道模式有效的通道常数。使用按位运算符组合通道类型常量。


Exceptions:该函数在错误时引发ImagickException。

返回值:成功时此函数返回TRUE。

以下示例程序旨在说明PHP中的Imagick::getImageChannelExtrema()函数:

程序1:

<?php 
  
// Create new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the extrema with CHANNEL constant as 0 
// which corresponds to imagick::CHANNEL_UNDEFINED 
$extrema = $imagick->getImageChannelExtrema(0); 
print_r($extrema); 
?>

输出:

Array ( [minima] => 0 [maxima] => -9223372036854775808 )

程序2:

<?php 
  
// Create new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); 
  
// Get the extrema with CHANNEL constant as 6 
// which corresponds to imagick::CHANNEL_BLUE 
$extrema = $imagick->getImageChannelExtrema(6); 
print_r($extrema); 
?>

输出:

Array ( [minima] => 5654 [maxima] => 65535 )

参考: https://www.php.net/manual/en/imagick.getimagechannelextrema.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageChannelExtrema() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。