本文整理自网络,侵删。
判断一个颜色是否是亮色
function IsLightColor(const AColor: TColor): Boolean;
var
r, g, b, yiq: integer;
begin
r := GetRValue(AColor);
g := GetGValue(AColor);
b := GetBValue(AColor);
yiq := ((r*299)+(g*587)+(b*114)) div 1000;
if (yiq >= 128) then
result := True
else
result := False;
end;
相关阅读 >>
Delphi 利用createservice写与桌面交互的win32服务
Delphi 2009 新增单元 character isletter、isupper、islower、isdigit、isnumber
Delphi sccoloredid,星际争霸彩色 id 修改器 v0.2.0,支持 windows vista
更多相关阅读请进入《Delphi》频道 >>