Imagick::functionImage()函数是PHP中的内置函数,用于对伪图像应用算术,关系或逻辑表达式。
用法:
bool Imagick::functionImage( int $function, array $arguments, int $channel = Imagick::CHANNEL_DEFAULT )
参数:此函数接受上述和以下所述的三个参数:
- $function:此参数保存要应用的函数。
- $arguments:此参数保存要传递给函数的数组。
- $channel:该参数保存Imagick通道常数,该常数提供对通道模式有效的任何通道常数。可以使用按位运算符组合多个通道。通道常数的默认值为CHANNEL_DEFAULT。
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
以下示例程序旨在说明PHP中的Imagick::functionImage()函数:
示例1:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Create the pseudo image
$imagick->newPseudoImage(800, 200, 'gradient:green-white');
// Apply the functionImage() functions
$imagick->functionImage(Imagick::FUNCTION_SINUSOID, array(1, -90));
header("Content-Type: image/png");
// Display the output image
$imagick->setImageFormat("png");
echo $imagick->getImageBlob();
?>
输出:
示例2:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Create the pseudo image
$imagick->newPseudoImage(800, 200, 'gradient:yellow-blue');
// Apply the functionImage() functions
$imagick->functionImage(Imagick::FUNCTION_POLYNOMIAL, array(6, -3, 1));
header("Content-Type: image/png");
// Display the output image
$imagick->setImageFormat("png");
echo $imagick->getImageBlob();
?>
输出:
示例3:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Create the pseudo image
$imagick->newPseudoImage(800, 200, 'gradient:white-blue');
// Apply the functionImage() functions
$imagick->functionImage(Imagick::FUNCTION_SINUSOID, array(3, -90));
header("Content-Type: image/png");
// Display the output image
$imagick->setImageFormat("png");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/imagick.functionimage.php
相关用法
- PHP Imagick getImageChannelMean()用法及代码示例
- PHP Imagick getImageClipMask()用法及代码示例
- PHP Imagick getImageChannelStatistics()用法及代码示例
- PHP Imagick getImageCompose()用法及代码示例
- PHP Imagick setImageClipMask()用法及代码示例
- PHP Imagick getImageChannelExtrema()用法及代码示例
- PHP Imagick setImageAlphaChannel()用法及代码示例
- PHP Imagick setImageBorderColor()用法及代码示例
- PHP Imagick haldClutImage()用法及代码示例
- PHP Imagick getImageBackgroundColor()用法及代码示例
- PHP Imagick getImageChannelDistortion()用法及代码示例
- PHP Imagick setImageBluePrimary()用法及代码示例
- PHP Imagick getImageBorderColor()用法及代码示例
- PHP Imagick setImageBackgroundColor()用法及代码示例
- PHP Imagick setImageCompose()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick functionImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。