Как получить цвета RGB из уже выделенного цвета в PHP GD - PullRequest
1 голос
/ 20 августа 2010

Как бы вы получили цвета от выделенного цвета что-то вроде ...

$col = imagecolorallocate($im, 255, 50, 5);
//A fake function - rgbfromallocate (that I wish I knew)

$rgb = rgbfromallocate($col);
print $rgb['r'];//255
print $rgb['g'];//50
print $rgb['b'];//5

1 Ответ

5 голосов
/ 20 августа 2010

Может быть imagecolorsforindex() это то, что вы ищете?

Например:

// $img is an image
$color = imagecolorallocate($img, 255, 50, 5);

$rgb = imagecolorsforindex($img, $color);
print $rgb['red']; // 255
print $rgb['green']; // 50
print $rgb['blue']; // 5
print $rgb['alpha']; // 0, but if the image uses the alpha channel,
// this would have a value of up to 127, which is fully transparent
...