生成所有颜色的十六进制值的代码

发布于 2024-12-03 15:09:12 字数 83 浏览 2 评论 0原文

大家好,我需要以 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蔚蓝源自深海 2024-12-10 15:09:12

只需打印从 0 到 2^24 的所有值并将其格式化为 6 位数字的十六进制...

long max = pow(2,24);
for(long i = 0; i < max; i++)
{
printf("%6x\n", i);
}

类似的东西?

Just print all values from 0 to 2^24 and format it as hex with 6 digits...

long max = pow(2,24);
for(long i = 0; i < max; i++)
{
printf("%6x\n", i);
}

Something like that?

焚却相思 2024-12-10 15:09:12
for i = 0 to 16 million
    print i as hexa
for i = 0 to 16 million
    print i as hexa
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文