• 2022-06-14
    RGB颜色模式可以为彩色图像中每个像素的RGB分量分配( )之间的强度值。
    A: 0~245
    B: 0~255
    C: 0~256
    D: 0~300
  • B

    内容

    • 0

      在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)

    • 1

      在灰度图像中,每个像素都有一个( )之间的亮度值。 A: 0~155 B: 0~255 C: 0~355 D: 0~455

    • 2

      RGB宏有三个参数,分别代表红,绿,蓝三个颜色的值BYTE类型,取值范围() A: 0~128 B: 0~156 C: 0~256 D: 0~255

    • 3

      在RGB模型中,R、G、B的取值范围是_______________。 A: 0~99 B: 0~100 C: 0~255 D: 0~256

    • 4

      在RGB模式的图像中每个像素的颜色值都由R、G、B这3个数值来决定,每个数值的范围都是0到255。当R、G、B数值分别为相等、均为255、均为0这3种不同的情况时,最终的颜色分别是 。