Windows资源管理器如何提取EXE文件的图标

发布于 2024-09-16 05:49:08 字数 275 浏览 7 评论 0原文

这是我的猜测。

我们通过 Windows 资源管理器列出文件和目录。 如果 Windows 资源管理器遇到 exe 文件,它会,

LoadLibraryEx(ExefileName, LOAD_LIBRARY_AS_DATAFILE)
然后提取图标,并表示它。

但我不确定。 有没有人对此很了解?

我发现了一个很好的 LOAD_LIBRARY_AS_DATAFILE 案例
你还有什么知道的吗?

It's my guess.

We list a files and directory by Windows Explorer.
If Windows Explorer meets a exe file, it does,

LoadLibraryEx(ExefileName, LOAD_LIBRARY_AS_DATAFILE)
Then extracts the icon, and represents it.

But I'm not sure.
Is there anyone who knows well about this?

I'm finding a nice case with LOAD_LIBRARY_AS_DATAFILE
Is there anything else you know?

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

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

发布评论

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

评论(2

白龙吟 2024-09-23 05:49:08

有一个名为 ExtractIconEx 的 win32api。

这正是您正在寻找的..:)

http://msdn.microsoft.com/en-us/library/ms648069%28VS.85%29.aspx

there is a win32api called ExtractIconEx.

this is exactly what you are looking for.. :)

http://msdn.microsoft.com/en-us/library/ms648069%28VS.85%29.aspx

回梦 2024-09-23 05:49:08

Raymond Chen 提供的一些更详细的信息:

shell 如何将图标位置转换为图标< /a>


Some more detailed info by Raymond Chen:

How the shell converts an icon location into an icon

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