RGB模型中白色表示为RGB(255,255,255)
举一反三
- RGB模型中白色表示为RGB(255,255,255)
- 【单选题】关于 RGB 色彩模型,以下说法不正确的是的 A. RGB 色彩模型中的三原色中包含黑色。 B. RGB 色彩模型中的三原色中包含红色。 C. 若某个像素点的值是( 0 , 255 , 0 ),则表示该颜色中只含绿色。 D. 若某个像素点的值是( 255 , 255 , 255 ),则表示该颜色为白色。
- 在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)
- 在RGB颜色模型中,当R=0,G=255,B=255,则表示的颜色为__________。 A: 红色 B: 绿色 C: 蓝色 D: 青色
- RGB颜色中,三个值都是255的颜色是白色。