imagecolorresolve

(PHP 4, PHP 5, PHP 7, PHP 8)

imagecolorresolve获取指定颜色的索引或其最接近的替代色

说明

imagecolorresolve(
    GdImage $image,
    int $red,
    int $green,
    int $blue
): int

此函数保证为请求的色返回一个色索引,无论是精确的色还是最接近的替代色。

如果你从文件创建了图像,则只解析图像中使用的颜色。仅存在于调色板中的颜色不会被解析。

参数

image

一个 GdImage 对象,由图像创建函数返回,例如 imagecreatetruecolor()

red

红色分量的值。

green

绿色分量的值。

blue

蓝色分量的值。

返回值

返回一个色索引。

变更日志

版本 说明
8.0.0 image 现在期望一个 GdImage 实例;以前,期望的是一个有效的 gd resource

示例

示例 #1 使用 imagecoloresolve() 从图像获取颜色

<?php
// 加载图像
$im = imagecreatefromgif('phplogo.gif');

// 从图像获取最接近的颜色
$colors = array();
$colors[] = imagecolorresolve($im, 255, 255, 255);
$colors[] = imagecolorresolve($im, 0, 0, 200);

// 输出
print_r($colors);

imagedestroy($im);
?>

上面的例子将输出类似于

Array
(
    [0] => 89
    [1] => 85
)

参见

添加备注

用户贡献备注 1 备注

1
ceo at l-i-e dot com
22 年前
好的,所以有时真正重要的是获得你想要的精确颜色,只是它不在图像中,而 ImageColorResolve 只是“不够接近”。

以下代码是一个令人厌恶的糟糕的技巧,相当慢,但它确实可以做到。

$colorcount = array();
for ($x = 0; $x < $width; $x++){
for ($y = 0; $y < $height; $y++){
$colorindex = imagecolorat($jpg, $x, $y);
if (!isset($colorcount[$colorindex])){
$colorcount[$colorindex] = 1;
}
else{
$colorcount[$colorindex]++;
}
}
}
asort($colorcount);
reset($colorcount);

$black = imagecolorexact($jpg, 0, 0, 0);
if ($black == -1){
$goner = key($colorcount);
$rgb = imagecolorsforindex($jpg, $goner);
#error_log("需要黑色:即将杀死 $goner ($rgb[red], $rgb[green], $rgb[blue]) 它只在 $colorcount[$goner] 个像素中使用", 0);
unset($colorcount[$goner]);
imagecolordeallocate($jpg, $goner);
$black = imagecolorallocate($jpg, 0, 0, 0);
}
if ($black == -1){
$black = imagecolorresolve($jpg, 0, 0, 0);
#error_log("该死!仍然无法分配颜色!", 0);
}
To Top