在 Visual Basic 中提取图标文件中的所有图像
我需要有关如何从图标文件中提取各种图像的帮助,即 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ExctactIcon
或ExtractIconEx
获取文件中的图标,返回图标句柄。DrawIcon
或DrawIconEx
绘制他们使用手柄。或者,
Bitmap.FromHICON
.net 中的 从图标句柄创建图像。DestroyIcon
免费由ExtractIcon
/ExtractIconEx
分配的资源。ExctactIcon
orExtractIconEx
get icons from a file, returning icon handle(s).DrawIcon
orDrawIconEx
draw them using the handles.Alternatively,
Bitmap.FromHICON
in .net creates an image from an icon handle.DestroyIcon
frees resources allocated byExtractIcon
/ExtractIconEx
.