怎么样可以用编程方式随即创建N个不重复的颜色值(即RGB值)
发布网友
发布时间:2022-05-16 09:48
我来回答
共1个回答
热心网友
时间:2023-10-18 18:53
Vb语言:
dim r as integer 'R
dim g as integer'G
dim b as integer'B
dim Colors(16777216) as Long 'RGB组合就有256^3这么多种颜色(平常说16.7万色)
dim a as long '数组索引
'循环很慢哦
For r=0 to 255
For g=0 to 255
For b=0 to 255
a=a+1
Colors(a)=RGB(r,g,b)'RGB函数生成颜色放到数组
Next
Next
Next
就是这样吧!追问那我试试~~!!谢谢