将Inno Setup WizardForm.Color转换为RGB

如果我尝试这个:

[Setup]
AppName=MyApp
AppVerName=MyApp
DefaultDirName={pf}MyApp
DefaultGroupName=MyApp
OutputDir=.

[Code]
function ColorToRGBstring(Color: TColor): string;
var
  R,G,B : Integer; 
begin 
  R := Color and $ff; 
  G := (Color and $ff00) shr 8; 
  B := (Color and $ff0000) shr 16; 
  result := 'red:' + inttostr(r) + ' green:' + inttostr(g) + ' blue:' + inttostr(b); 
end;

procedure InitializeWizard();
begin
  MsgBox(ColorToRGBstring(WizardForm.Color),mbConfirmation, MB_OK);
end;

我得到:红色:15绿色:0蓝色:0
但结果应该是:240 240 240(灰色)

哪里不对?

我需要得到正确的TColor并将其转换为RGB颜色代码。


当第一个字节是$FF ,最后一个字节是系统调色板中的一个索引。

您可以使用GetSysColor函数获取系统颜色的RGB。

function GetSysColor(nIndex: Integer): DWORD;
  external 'GetSysColor@User32.dll stdcall';

function ColorToRGB(Color: TColor): Cardinal;
begin
  if Color < 0 then
    Result := GetSysColor(Color and $000000FF) else
    Result := Color;
end;

ColorToRGB代码从Delphi VCL(Vcl.Graphics单元)复制而来。

链接地址: http://www.djcxy.com/p/87809.html

上一篇: Converting Inno Setup WizardForm.Color to RGB

下一篇: Why 6 Bits for Green Color