编程论坛
注册
登录
编程论坛
→
VB.NET论坛
怎么提取图标?
asad
发布于 2021-12-17 21:52, 2096 次点击
怎么把窗体图标提取出来,有什么办法?
5 回复
#2
apull
2021-12-19 21:07
可以使用ExtractIconEx或者PrivateExtractIconsW提取程序文件中的图标。
https://docs.
#3
asad
2021-12-20 08:41
回复 2楼 apull
怎么用?
#4
apull
2021-12-20 09:17
我这有个c#版的,你参考一下。
https://
#5
asad
2021-12-20 10:28
回复 4楼 apull
谢谢,我试试
#6
asad
2021-12-20 14:32
pictureBox1.Image = this.Icon.ToBitmap();
pictureBox1.Image.Save("a.bmp");
[此贴子已经被作者于2021-12-23 23:27编辑过]
1