Windows资源管理器如何提取EXE文件的图标
这是我的猜测。
我们通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个名为 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
Raymond Chen 提供的一些更详细的信息:
Some more detailed info by Raymond Chen: