如何向 mingw-gcc 编译的可执行文件添加图标?

发布于 2024-07-16 09:35:42 字数 72 浏览 4 评论 0原文

在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 技术交流群。

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

发布评论

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

评论(3

山有枢 2024-07-23 09:35:42

您需要先创建图标。 然后您需要创建一个包含以下内容的 RC 文件。 这里我们将其命名为my.rc

id ICON "path/to/my.ico"

上面命令中提到的 id 几乎可以是任何东西。 除非您想在代码中引用它,否则这并不重要。 然后按如下方式运行 Windres:

windres my.rc -O coff -o my.res

然后在构建可执行文件以及其他目标文件和资源文件时,包含我们从上述步骤中获得的 my.res 。 例如:

g++ -o my_app obj1.o obj2.o res1.res my.res

这就是全部内容了。


而且,如果您想在您的文件中包含版本信息,无需额外付费
应用程序中,将以下样板添加到新的 .rc 文件中,并按照上述步骤操作。

1 VERSIONINFO
FILEVERSION     1,0,0,0
PRODUCTVERSION  1,0,0,0
BEGIN
  BLOCK "StringFileInfo"
  BEGIN
    BLOCK "080904E4"
    BEGIN
      VALUE "CompanyName", "My Company Name"
      VALUE "FileDescription", "My excellent application"
      VALUE "FileVersion", "1.0"
      VALUE "InternalName", "my_app"
      VALUE "LegalCopyright", "My Name"
      VALUE "OriginalFilename", "my_app.exe"
      VALUE "ProductName", "My App"
      VALUE "ProductVersion", "1.0"
    END
  END
  BLOCK "VarFileInfo"
  BEGIN
    VALUE "Translation", 0x809, 1252
  END
END

请注意,langID 适用于英国英语(这是最接近的本地化版本)
我可以识别澳大利亚。)如果您想要美国“英语”,请更改 BLOCK
行至:

BLOCK "040904E4"

以及翻译行至:

VALUE "Translation", 0x409, 1252

请参阅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.

id ICON "path/to/my.ico"

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:

windres my.rc -O coff -o my.res

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.:

g++ -o my_app obj1.o obj2.o res1.res my.res

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.

1 VERSIONINFO
FILEVERSION     1,0,0,0
PRODUCTVERSION  1,0,0,0
BEGIN
  BLOCK "StringFileInfo"
  BEGIN
    BLOCK "080904E4"
    BEGIN
      VALUE "CompanyName", "My Company Name"
      VALUE "FileDescription", "My excellent application"
      VALUE "FileVersion", "1.0"
      VALUE "InternalName", "my_app"
      VALUE "LegalCopyright", "My Name"
      VALUE "OriginalFilename", "my_app.exe"
      VALUE "ProductName", "My App"
      VALUE "ProductVersion", "1.0"
    END
  END
  BLOCK "VarFileInfo"
  BEGIN
    VALUE "Translation", 0x809, 1252
  END
END

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:

BLOCK "040904E4"

and the translation line to:

VALUE "Translation", 0x409, 1252

See VERSIONINFO resource for for info.

翻了热茶 2024-07-23 09:35:42

在 RC 文件中,nameID 甚至不必是名称,它可以是
一个整数。 仅当文件名包含空格时才必须用引号引起来。 反而
of:

windres my.rc -O coff -o my.res

您可以使用:

windres my.rc my.o

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:

windres my.rc -O coff -o my.res

You can use:

windres my.rc my.o
甜柠檬 2024-07-23 09:35:42

尝试资源黑客。 我能够在 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

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