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
相关用法
- PHP Imagick morphImages()用法及代码示例
- PHP Imagick setImageDispose()用法及代码示例
- PHP Imagick colorFloodfillImage()用法及代码示例
- PHP Imagick levelImage()用法及代码示例
- PHP Imagick linearStretchImage()用法及代码示例
- PHP Imagick profileImage()用法及代码示例
- PHP Imagick coalesceImages()用法及代码示例
- PHP Imagick functionImage()用法及代码示例
- PHP Imagick smushImages()用法及代码示例
- PHP Imagick readImageBlob()用法及代码示例
- PHP Imagick identifyFormat()用法及代码示例
- PHP Imagick colorizeImage()用法及代码示例
- PHP Imagick addImage()用法及代码示例
- PHP Imagick setImageDelay()用法及代码示例
- PHP Imagick clear()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageChannelExtrema() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。