Delphi 如何将颜色值转换为HTML格式?


本文整理自网络,侵删。

 
function GetHTMLColor(cl: TColor; IsBackColor: Boolean): string;
var rgbColor: TColorRef;
begin
  if IsBackColor then
    Result := 'bg'
  else
    Result := '';
  rgbColor := ColorToRGB(cl);
  Result := Result + 'color="#' + Format('%.2x%.2x%.2x',
                                            [GetRValue(rgbColor),
                                             GetGValue(rgbColor),
                                             GetBValue(rgbColor)]) + '"';
end;

相关阅读 >>

Delphi 将自己的app.ico应用程序图表添加到dephi资源文件res中

Delphi pagecontrol不�@示tab方式

Delphi richedit控件中插入gif动画表情

Delphi 通过wmi获取u盘硬件特征码

crc16.pas

Delphi 从url地址中获得文件名

Delphi设置dbgrid每列自动居中

Delphi xe5的新功能“ tlistview内置搜索过滤”

Delphi dpr文件误删怎么办

Delphi shellexecute 发送邮件

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...