在 Visual Basic 中提取图标文件中的所有图像

发布于 2024-09-25 23:46:14 字数 140 浏览 4 评论 0原文

我需要有关如何从图标文件中提取各种图像的帮助,即 256 x 256、48 x 48、32 x 32、24 x 24、16 x 16 等。

我是一名 vb6 和 vb.net 普通程序员,没问题如果帮助来自我提到的任何编程语言,

谢谢

I need help on how to extract the various images from an icon file ie 256 x 256, 48 x 48, 32 x 32, 24 x 24, 16 x 16 etc.

Am a vb6 and vb.net average programmer, and would be ok if help comes from any of the programming languages i mentioned

thanks

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

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

发布评论

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

评论(1

野却迷人 2024-10-02 23:46:14

ExctactIconExtractIconEx 获取文件中的图标,返回图标句柄。

DrawIconDrawIconEx 绘制他们使用手柄。
或者,Bitmap.FromHICON .net 中的 从图标句柄创建图像。

DestroyIcon 免费由 ExtractIcon / ExtractIconEx 分配的资源。

ExctactIcon or ExtractIconEx get icons from a file, returning icon handle(s).

DrawIcon or DrawIconEx draw them using the handles.
Alternatively, Bitmap.FromHICON in .net creates an image from an icon handle.

DestroyIcon frees resources allocated by ExtractIcon / ExtractIconEx.

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