我使用此代码:
for($x=0;$x<$stageWidth;$x++){
$stageColors[$x] = [];
for($y=0;$y<$stageHeight;$y++){
array_push($stageColors[$x],imagecolorat($pngImage,$x,$y));
}
}
将所有颜色索引存储在数组中。
但是我怎么能像CSS兼容的那样回应它们呢?
例如:
<div style="background:#<?php echo $either_RGBA_OR_HEX; ?>" ></div>
RGBA(或RGB)或HEX
无关紧要答案 0 :(得分:4)
以下是获取rgb值的帮助:
<?php
$im = imagecreatefrompng("php.png");
$rgb = imagecolorat($im, 10, 15);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
var_dump($r, $g, $b);//shows the individual values that you can use
?>