如何向 mingw-gcc 编译的可执行文件添加图标?
在Windows中,使用mingw的gcc,有没有办法指定输出的exe文件是带有图标文件,以便exe文件在资源管理器中显示该图标?
In Windows, using mingw's gcc, is there anyway to specify that the output exe file is to take an icon file, so that the exe file shows with that icon in explorer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要先创建图标。 然后您需要创建一个包含以下内容的 RC 文件。 这里我们将其命名为
my.rc
。上面命令中提到的 id 几乎可以是任何东西。 除非您想在代码中引用它,否则这并不重要。 然后按如下方式运行 Windres:
然后在构建可执行文件以及其他目标文件和资源文件时,包含我们从上述步骤中获得的
my.res
。 例如:这就是全部内容了。
而且,如果您想在您的文件中包含版本信息,无需额外付费
应用程序中,将以下样板添加到新的
.rc
文件中,并按照上述步骤操作。请注意,langID 适用于英国英语(这是最接近的本地化版本)
我可以识别澳大利亚。)如果您想要美国“英语”,请更改
BLOCK
行至:
以及翻译行至:
请参阅VERSIONINFO 资源 用于获取信息。
You need to create the icon first. Then you need to create a RC file with the below content. Here we'll name it as
my.rc
.The
id
mentioned in the above command can be pretty much anything. It doesn't matter unless you want to refer to it in your code. Then run windres as follows:Then while building the executable, along with other object files and resource files, include
my.res
which we got from the above step. e.g.:And that should be all there is to it.
And, at no extra charge, if you want to include version information in your
application, add the following boilerplate to a new
.rc
file and follow the above mentioned steps.Note, the langID is for U.K. English (which is the closest localisation to
Australia I could identify.) If you want U.S. "English" then change the
BLOCK
line to:
and the translation line to:
See VERSIONINFO resource for for info.
在 RC 文件中,nameID 甚至不必是名称,它可以是
一个整数。 仅当文件名包含空格时才必须用引号引起来。 反而
of:
您可以使用:
ICON 资源
windres 手册页
示例
In the RC file, the nameID does not even have to be a name, it can just be
an integer. The filename must be quoted only if it contains a space. Instead
of:
You can use:
ICON resource
windres man page
Example
尝试资源黑客。 我能够在 Linux (WSL) 中交叉编译我的项目,并从主页上的徽标生成一个图标。 只需要一个简单的方法将其嵌入到 exe 中,这个程序就运行得很好。
Angus Johnson 的资源黑客
Try Resource Hacker. I was able to cross compile my project in Linux (WSL) and generate an icon from the logo on the homepage. Just needed a simple way to embed it in the exe and this program worked great.
Resource Hacker by Angus Johnson