ExcelTip.Net留存知识帖 ---【注:附件之前被网盘供应商清空后,现已修复-现已修复-现已修复为本地下载!】
现在位置:首页 > 我的酷贴 > Excel VBA > RGB色彩关系学习示例文件

RGB色彩关系学习示例文件

作者:绿色风 分类: 时间:2022-08-18 浏览:89
楼主
kevinchengcw
对于RGB的关系,本文附件提供了一个演示效果,相信对了解RGB颜色之间的关系会有所帮助。
图示是用VBA代码生成,代码如下:
  1. Sub test()   '生成RGB三色对应条的代码
  2. For N = 1 To 7
  3. Cells(1, N) = " R, G, B : 当前色值"   '写标题行
  4. Next N
  5. For N = 2 To 257   '单元格及RGB值(n-2)范围
  6. If N < 129 Then Rows(N).Font.Color = vbWhite   '当颜色较深时使用白色字体
  7. Cells(N, 1).Interior.Color = RGB(N - 2, 0, 0)
  8. Cells(N, 1) = Space(3 - Len(N - 2)) & N - 2 & ", 0, 0 : " & Cells(N, 1).Interior.Color & Space(8 - Len(Cells(N, 1).Interior.Color))   '格式化输出显示内容
  9. Cells(N, 2).Interior.Color = RGB(0, N - 2, 0)
  10. Cells(N, 2) = " 0, " & Space(3 - Len(N - 2)) & N - 2 & ", 0 : " & Cells(N, 2).Interior.Color & Space(8 - Len(Cells(N, 2).Interior.Color))
  11. Cells(N, 3).Interior.Color = RGB(0, 0, N - 2)
  12. Cells(N, 3).Font.Color = vbWhite
  13. Cells(N, 3) = " 0, 0, " & Space(3 - Len(N - 2)) & N - 2 & " : " & Cells(N, 3).Interior.Color & Space(8 - Len(Cells(N, 3).Interior.Color))
  14. Cells(N, 4).Interior.Color = RGB(N - 2, N - 2, 0)
  15. Cells(N, 4) = Space(3 - Len(N - 2)) & N - 2 & ", " & Space(3 - Len(N - 2)) & N - 2 & ", 0 : " & Cells(N, 4).Interior.Color & Space(8 - Len(Cells(N, 4).Interior.Color))
  16. Cells(N, 5).Interior.Color = RGB(N - 2, 0, N - 2)
  17. Cells(N, 5) = Space(3 - Len(N - 2)) & N - 2 & ", 0, " & Space(3 - Len(N - 2)) & N - 2 & " : " & Cells(N, 5).Interior.Color & Space(8 - Len(Cells(N, 5).Interior.Color))
  18. Cells(N, 6).Interior.Color = RGB(0, N - 2, N - 2)
  19. Cells(N, 6) = " 0, " & Space(3 - Len(N - 2)) & N - 2 & ", " & Space(3 - Len(N - 2)) & N - 2 & " : " & Cells(N, 6).Interior.Color & Space(8 - Len(Cells(N, 6).Interior.Color))
  20. Cells(N, 7).Interior.Color = RGB(N - 2, N - 2, N - 2)
  21. Cells(N, 7) = Space(3 - Len(N - 2)) & N - 2 & ", " & Space(3 - Len(N - 2)) & N - 2 & ", " & Space(3 - Len(N - 2)) & N - 2 & " : " & Cells(N, 7).Interior.Color & Space(8 - Len(Cells(N, 7).Interior.Color))
  22. Next N
  23. Columns("A:G").EntireColumn.AutoFit   '列宽自适应
  24. End Sub

  25. Sub test2()   '生成随机色彩及对应值的代码
  26. Dim R, G, B, M, N As Integer
  27. Cells.Delete   '先清空区域
  28. For N = 1 To 7
  29. Cells(1, N) = " R, G, B : 当前色值"   '生成标题行
  30. Next N
  31. For N = 2 To 100
  32.   For M = 1 To 7
  33.    '取得R,G,B的随机值
  34.     R = Int((Rnd * 10000) Mod 256)
  35.     G = Int((Rnd * 10000) Mod 256)
  36.     B = Int((Rnd * 10000) Mod 256)
  37.     Cells(N, M).Interior.Color = RGB(R, G, B)
  38.     Cells(N, M) = Space(3 - Len(R)) & R & ", " & Space(3 - Len(G)) & G & ", " & Space(3 - Len(B)) & B & " : " & Cells(N, M).Interior.Color & Space(8 - Len(Cells(N, M).Interior.Color))
  39.   Next M
  40. Next N
  41. Columns("A:G").EntireColumn.AutoFit
  42. End Sub

RGB色彩学习.rar
2楼
wnianzhong
谢谢,学习了,

免责声明

有感于原ExcelTip.Net留存知识的价值及部分知识具有的时间限定性因素, 经与ExcelTip.Net站长Apolloh商议并征得其同意, 现将原属ExcelTip.Net的知识帖采集资料于本站点进行展示, 供有需要的人士查询使用,也慰缅曾经的论坛时代。 所示各个帖子的原作者如对版权有异议, 可与本人沟通提出,或于本站点留言,我们会尽快处理。 在此,感谢ExcelTip.Net站长Apolloh的支持,感谢本站点所有人**绿色风(QQ:79664738)**的支持与奉献,特此鸣谢!
------本人网名**KevinChengCW(QQ:1210618015)**原ExcelTip.Net总版主之一

评论列表
sitemap