gpt4 book ai didi

delphi - 正确地将资源包含到 Delphi 包中

转载 作者:行者123 更新时间:2023-12-02 03:48:34 28 4
gpt4 key购买 nike

我编写了一个 Delphi 包,其中两个组件使用我放置在 GraphContour.res 中的相同 PNG 资源。使用以下脚本创建文件:

compile_res.bat:

@brcc32 GraphContour.rc

GraphContour.rc:

GRAPH_CONTOUR RCDATA GraphContour.png

如果两个组件单元都包含 {$R GraphContour.res}指令,组件工作,但我收到编译器警告:

[dcc32 Hint] H2161 Warning: Duplicate resource: Type 10 (RCDATA), ID GRAPH_CONTOUR; File C:\Borland\Components\MyControls\GraphContour.res resource kept; file C:\Borland\Components\MyControls\GraphContour.res resource discarded.

如果我删除 {$R GraphContour.res}来自单位的指令将其放入 DPK 文件中:

{$R *.res}
{$R GraphContour.res}

警告消失,我可以编译包,资源在设计时显示,但在运行时出现错误:

Project ComponentTest.exe raised exception class EResNotFound with message 'Resource GRAPH_CONTOUR not found'.

这两个控件之一的一些代码:

procedure TMyDisplay.CreateWnd();
var png: TPngImage;
begin
inherited;
//......................
png := TPngImage.Create;
try
png.LoadFromResourceName(HInstance, 'GRAPH_CONTOUR'); //Error is here
_knob.Center.Picture.Graphic := png;
finally
png.Free();
end;
//......................
end;

我用二进制查看器查看了 BPL 文件,发现那里有 GRAPH_CONTOUR 字符串名称。

我尝试使用FindClassHInstance而不是HInstance 。这没有帮助。

png.LoadFromResourceName(FindClassHInstance(Self.ClassType), 'GRAPH_CONTOUR');

如何正确地将资源包含到 BPL 中?

更新

这是我用来检查资源可用性的测试应用程序:

program Loadres;

uses Winapi.Windows;

procedure PrintLastError();
var
cchMsg, code: Cardinal;
buf: array[0..512] of WideChar;
begin
code := GetLastError();
cchMsg := FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM or FORMAT_MESSAGE_IGNORE_INSERTS,
nil, code, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), @buf, SizeOf(buf), nil);
MessageBoxW(0, @buf, 'Error', MB_ICONERROR);
end;

var
hm, hResInfo, hResData, hPngFile: NativeUInt;
rp: Pointer;
wb, rs: Cardinal;

begin
hm := LoadLibrary('C:\Documents and Settings\All Users\Documents\Embarcadero\Studio\17.0\Bpl\MyControls.bpl');
if hm = 0 then begin PrintLastError(); Exit; end;
try
hResInfo := FindResource(hm, 'GRAPH_CONTOUR', RT_RCDATA);
if hResInfo = 0 then begin PrintLastError(); Exit; end;
hResData := LoadResource(hm, hResInfo);
if hResData = 0 then begin PrintLastError(); Exit; end;
rs := SizeofResource(hm, hResInfo);
rp := LockResource(hResData);
try
hPngFile := CreateFile('TheContour.png', GENERIC_WRITE, 0, nil, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, 0);
try
WriteFile(hPngFile, rp^, rs, wb, nil);
finally
CloseHandle(hPngFile);
end;
finally
UnlockResource(hResData);
end;
finally
FreeLibrary(hm);
end;
end.

它查找资源,报告正确的资源大小,并将资源写入文件。该文件与原始文件相符。

最佳答案

根据您所做的调试以及注释中的描述,问题在于您的可执行程序未使用运行时包。相反,它直接将源文件编译成可执行文件。由于它们不再链接资源,因此它不存在于可执行文件中。

一些选项:

  1. 使用运行时包。这可能需要您将当前包拆分为设计时包和运行时包。
  2. 将资源放入单独的单元中(不需要任何代码,只需链接需要链接的资源即可)。将该单元包含在您的设计时包和可执行文件中。如果您安排组件源文件使用该资源单元,那么它将被强制包含在任何需要该资源的模块中。

关于delphi - 正确地将资源包含到 Delphi 包中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46154956/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com