imagecolorclosestalpha()函数是PHP中的内置函数,用于获取给定图像中带有alpha值的壁橱颜色索引。此函数返回最接近指定RGB值和alpha级别的图像调色板中颜色的索引。 Alpha值表示图像的透明度。
用法:
int imagecolorclosestalpha ( $image, $red, $green, $blue, $alpha )
参数:该函数接受上述和以下所述的五个参数:
- $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
- $red:此参数用于设置红色分量的值。
- $green:此参数用于设置绿色分量的值。
- $blue:此参数用于设置蓝色分量的值。
- $alpha:此参数用于设置图像的透明度。 $alpha的值在0到127之间,其中0表示完全不透明,而127表示完全透明。
返回值:此函数返回调色板中最接近的颜色的索引。
以下示例程序旨在说明PHP中的imagecolorclosestalpha()函数:
程序1:
<?php
// Convert an image into a palette-based image
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png');
imagetruecolortopalette($image, false, 255);
// Find closest color in image
$output = imagecolorclosestalpha($image, 155, 40, 200, 50);
$output = imagecolorsforindex($image, $output);
$output = "({$output['red']}, {$output['green']},
{$output['blue']}, {$output['alpha']})";
echo "Closest match: " . $output . "\n";
imagedestroy($image);
?>
输出:
Closest match: (100, 58, 108, 0)
程序2:
<?php
// Convert an image into a palette-based image
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png');
imagetruecolortopalette($image, false, 255);
// Search the given rgb color.
$color = array(
array(155, 40, 200, 50),
array(235, 205, 188, 127),
array(135, 00, 132, 0),
);
// Loop to return the closest color match.
foreach($color as $id => $rgb)
{
$output = imagecolorclosestalpha($image, $rgb[0],
$rgb[1], $rgb[2], $rgb[3]);
$output = imagecolorsforindex($image, $output);
$output = "({$output['red']}, {$output['green']},
{$output['blue']}, {$output['alpha']})";
echo "Given color: ($rgb[0], $rgb[1], $rgb[2], $rgb[3])
=> Closest match: $output <br>";
}
imagedestroy($image);
?>
输出:
Given color: (155, 40, 200, 50) => Closest match: (100, 58, 108, 0) Given color: (235, 205, 188, 127) => Closest match: (100, 58, 108, 0) Given color: (135, 0, 132, 0) => Closest match: (100, 58, 108, 0)
相关文章:
参考: http://php.net/manual/en/function.imagecolorclosestalpha.php
相关用法
- p5.js nfc()用法及代码示例
- p5.js nfp()用法及代码示例
- p5.js nfs()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP cos( )用法及代码示例
- p5.js nf()用法及代码示例
- PHP tan( )用法及代码示例
- PHP sin( )用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- d3.js d3.set.has()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorclosestalpha() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。