GO语言打包ICO图标

1. 

go get github.com/akavel/rsrc
2. 

创建manifest文件, 命名:main.exe.manifest :

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="x86"
name="controls"
type="win32"
></assemblyIdentity>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
></assemblyIdentity>
</dependentAssembly>
</dependency>
</assembly>
3. 生成syso文件

src_windows_amd64 -manifest main.exe.manifest -ico main.ico -o main.syso

4. 将生成的main.syso文件拷贝到main.go同级目录

5. 编译生成main.exe

go build -o main.exe Project/main

最终效果图:

posted @ 2018-12-24 17:22  林台山人  阅读(780)  评论(0编辑  收藏  举报