Imagick::paintTransparentImage()函数是PHP中的内置函数,可用于更改与颜色匹配的任何像素和定义的颜色。
用法:
bool Imagick::paintTransparentImage( $target, $alpha, $fuzz )
参数:此函数接受上述和以下所述的三个参数:
- $target:它包含目标颜色的值,以在给定范围内更改指定的不透明度值。
- $alpha:它包含从0.0(完全透明)到1.0(完全不透明)的浮点值。
- $fuzz:它定义了将两种颜色视为相同时可接受的公差。
返回值:成功时此函数返回True。
错误/异常:此函数在错误时引发ImagickException。
以下示例程序旨在说明PHP中的Imagick::paintTransparentImage()函数:
程序:
<?php
// Create a new Imagick object
$imagick = new \Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Cloning the imagick object
$paintit = clone $imagick;
$quantum = $imagick->getQuantumDepth()['quantumDepthLong'];
// Use Imagick::paintTransparentImage() function function
// change the pixel color
$paintit->paintTransparentImage("White", 0.2, 0.5 *$quantum);
header("Content-Type: image/jpg");
// Display the output image
echo $paintit->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/imagick.painttransparentimage.php
相关用法
- PHP Imagick setImageAlphaChannel()用法及代码示例
- PHP Imagick getImageChannelStatistics()用法及代码示例
- PHP Imagick getImageCompose()用法及代码示例
- PHP Imagick setImageClipMask()用法及代码示例
- PHP Imagick getImageChannelExtrema()用法及代码示例
- PHP Imagick getImageChannelMean()用法及代码示例
- PHP Imagick getImageClipMask()用法及代码示例
- PHP Imagick setImageBorderColor()用法及代码示例
- PHP Imagick haldClutImage()用法及代码示例
- PHP Imagick getImageBackgroundColor()用法及代码示例
- PHP Imagick getImageChannelDistortion()用法及代码示例
- PHP Imagick setImageBluePrimary()用法及代码示例
- PHP Imagick getImageBorderColor()用法及代码示例
- PHP Imagick setImageBackgroundColor()用法及代码示例
- PHP Imagick setImageCompose()用法及代码示例
注:本文由纯净天空筛选整理自harshvvaid1996大神的英文原创作品 PHP | Imagick paintTransparentImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。