找不到资源png

发布于 2024-11-17 05:55:12 字数 598 浏览 1 评论 0原文

我制作了一个名为 glyfs.rc
的 png 资源文件 GLYF_CONFEDITOR RCDATA confeditor.png GLYF_EXTRAFE RCDATA extrafe.png .......

我将其添加到我的项目中。
放置一个 TsBitBtn (它是一个 alphaskin 组件类)并尝试从资源文件加载 glyf sbitbtn1.Glyph.LoadFromResourceName(HInstance,'GLYF_CONFEDITOR');
当我运行时,我收到错误资源文件,名称为“GLYF_CONFEDITOR”未找到。

我做错了什么?

我用于 png 的 3 方工具是 pngdelphi,从 此处
下载 但 sbitbtn 加载本机 png 文件......

i make a png resource file named glyfs.rc
GLYF_CONFEDITOR RCDATA confeditor.png GLYF_EXTRAFE RCDATA extrafe.png .......

i add it in my project.
Put a TsBitBtn (it is an alphaskin component class) and try to load the glyf from resource file
sbitbtn1.Glyph.LoadFromResourceName(HInstance,'GLYF_CONFEDITOR');
when i run i get the error resource file with name 'GLYF_CONFEDITOR' not found.

What am i doing wrong?

The 3 party tool i use for png is pngdelphi downloaded from here
But the sbitbtn loads native the png files...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紙鸢 2024-11-24 05:55:12

您的代码存在多个问题:

  • TBitBtn.Glyph 的类型为 TBitmap,并且 TBitmap.LoadFromResourceName 假定 RT_BITMAP 资源类型,而不是 RT_RCDATA,因此出现“资源未找到”错误。
  • 即使您使用 RT_BITMAP,它也会抛出 EInvalidGraphic 或类似的错误,因为 TBitBtn.GlyphTBitmap 并且 TBitmap 自然不会加载 PNG 数据。

¹ LoadFromResourceName 后面有 WinAPI 函数 LoadImage,实际错误消息可能会有所不同。

There are multiple problems with your code:

  • TBitBtn.Glyph is of type TBitmap and TBitmap.LoadFromResourceName assumes RT_BITMAP resource type, not RT_RCDATA, hence "resource not found" error.
  • Even if you use RT_BITMAP it will throw EInvalidGraphic or similar¹ because again - TBitBtn.Glyph is TBitmap and naturally TBitmap wont load PNG data.

¹ there is WinAPI function LoadImage behind LoadFromResourceName, actual error message may vary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文