gpt4 book ai didi

php - 从 PHP 生成渐变颜色

转载 作者:可可西里 更新时间:2023-11-01 00:27:16 24 4
gpt4 key购买 nike

我想知道如何构建一个给出颜色代码和显示这种颜色的渐变。例如:

function generate_color(int colorindex)
{ .......
.......
Generate 10 pale colors of this color.


}

请帮帮我

最佳答案

Michael 引用的代码相当可怕。但解决方案很简单。如果您只考虑灰度图像,可能会更清楚:

 function create_pallette($start, $end, $entries=10)
{
$inc=($start - $end)/($entries-1);
$out=array(0=>$start);
for ($x=1; $x<$entries;$x++) {
$out[$x]=$start+$inc * $x;
}
return $out;
}

仅使用 3D 矢量 (RGB) 而不是 1D 矢量。

C.

关于php - 从 PHP 生成渐变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3511094/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com