码迷,mamicode.com
首页 > 其他好文 > 详细

TColor 与 RGB 的转换函数

时间:2015-03-14 18:23:11      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

function RGB2TColor(const R, G, B: Byte): Integer;
begin
  // convert hexa-decimal values to RGB
  Result := R + G shl 8 + B shl 16;
end;

procedure TColor2RGB(const Color: TColor; var R, G, B: Byte);
begin
  R := Color and $FF;
  G := (Color shr 8) and $FF;
  B := (Color shr 16) and $FF;
end;
//特地开计算器算了下,尼玛FF=255;

TColor 与 RGB 的转换函数

标签:

原文地址:http://www.cnblogs.com/FanYs/p/4337841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!