生成所有颜色的十六进制值的代码
大家好,我需要以 6 位十六进制表示法生成所有可能的 1600 万种颜色的列表 - 如何才能做到这一点,我希望有一个公式。我在这里用 php 构建脚本。
Hi guys I need to generate a list of all possible 16 million colors in the 6 digit hexadecimal notation - how can that be done, I would appreciate a formula for that. I'm building the script in php here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需打印从 0 到 2^24 的所有值并将其格式化为 6 位数字的十六进制...
类似的东西?
Just print all values from 0 to 2^24 and format it as hex with 6 digits...
Something like that?