(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolorclosest — 取得与指定的颜色最接近的颜色索引值
返回图像调色板中与指定的 RGB 值最“接近”的颜色索引。
计算所需颜色与调色板中每种颜色之间的“距离”,就好像 RGB 值表示三维空间中的点一样。
如果图象由文件创建,只有该图象使用到的颜色会被解析。仅存在于调色板中的颜色不会被解析。
image
由图象创建函数(例如imagecreatetruecolor())返回的 GdImage 对象。
red
红色成分的值。
green
绿色成分的值。
blue
蓝色成分的值。
返回图像调色板中最接近指定颜色的索引
示例 #1 在图像中搜索一组颜色
<?php
// Start with an image and convert it to a palette-based image
$im = imagecreatefrompng('figures/imagecolorclosest.png');
imagetruecolortopalette($im, false, 255);
// Search colors (RGB)
$colors = array(
array(254, 145, 154),
array(153, 145, 188),
array(153, 90, 145),
array(255, 137, 92)
);
// Loop through each search and find the closest color in the palette.
// Return the search number, the search RGB and the converted RGB match
foreach($colors as $id => $rgb)
{
$result = imagecolorclosest($im, $rgb[0], $rgb[1], $rgb[2]);
$result = imagecolorsforindex($im, $result);
$result = "({$result['red']}, {$result['green']}, {$result['blue']})";
echo "#$id: Search ($rgb[0], $rgb[1], $rgb[2]); Closest match: $result.\n";
}
imagedestroy($im);
?>
以上示例的输出类似于:
#0: Search (254, 145, 154); Closest match: (252, 150, 148). #1: Search (153, 145, 188); Closest match: (148, 150, 196). #2: Search (153, 90, 145); Closest match: (148, 90, 156). #3: Search (255, 137, 92); Closest match: (252, 150, 92).