获取应用程序图标的MD5值
我希望能够获取应用程序的原始图标 MD5 值。
我不知道从哪里开始使用 VB.Net。
I want to be able to get an application's raw icon MD5 value.
I have no idea where to start using VB.Net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从可执行文件中获取默认应用程序图标,您可以使用 此代码
获得后图标,将其保存到文件中并使用 this代码来获取其MD5。您实际上不必保存文件,只需将图标转换为字节数组并使用它转换为 MD5 值即可。
To get the default application icon from an executable file, you can use this code
After you got the Icon, save it into a file and use this code to get its MD5. You don't actually have to save the file, just convert the icon into byte array and use it to convert to MD5 value.