函数参考


_ColorSetRGB

返回 RGB 颜色

#Include <Color.au3>
_ColorSetRGB($aColor)

参数

$aColor 一个包含下列值的数组,范围为 0-255:
[0] 红色颜色成分
[1] 绿色颜色成分
[2] 蓝色颜色成分

返回值

成功: 返回 0x00RRGGBB 格式的 RGB 颜色.
失败: 设置 @error
@error: 1 无效数组
2 无效颜色值

注意/说明

@extended 为预先保留值.

相关

_ColorGetRGB

示例/演示


#include <Color.au3>

Local $aColor[3] = [0x80, 0x90, 0xff]

Local $nColor = _ColorSetRGB($aColor)
MsgBox( 4096, "AutoIt", " 红=" & Hex($aColor[0],2) & " 绿=" & Hex($aColor[1],2) & " 蓝=" & Hex($aColor[2],2) & @CRLF & _
        "颜色=" & Hex($nColor))