Windows 应用程序图标文件
在 Windows(XP - 7,假设是同一进程)上创建 .exe 时,应用程序图标的格式是什么?文件扩展名是什么?最大尺寸是多少?
对于 Mac OS X 上的应用程序,可以右键单击该应用程序并选择“显示包内容”。从这里,可以在名为“resources”的文件夹中找到 .icns 文件以及与应用程序相关的其他资产。 .icns 文件包含 5 种尺寸的同一图标文件(16x16、32x32、128x128、256x256 和 512x512)。 XCode 开发工具中名为“Icon Composer”的应用程序用于生成 .icns 文件
我对 Windows 软件开发零经验,但想了解为 Windows 应用程序准备图标文件的最佳实践。
when creating an .exe on Windows (XP - 7, assuming it's the same process), what is the format for the application icon? what is the file extension? what size is the maximum?
with applications on Mac OS X, it is possible to right-click on the application and select "Show Package Contents". from here, an .icns file can be found in a folder called "resources" along with other assets pertaining to the application. .icns files contain 5 sizes of the same icon file (16x16, 32x32, 128x128, 256x256 and 512x512). an application from XCode developer tools called "Icon Composer" is used to produce .icns files
i have zero experience with Windows software development but would like to know best practices for preparing icon files for Windows applications.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Visual Studio 具有用于在编译时在可执行文件上编辑和嵌入图标的工具。
visual Studio has tools for editing and embedding an icon on an executable file, at compile time.
您需要一个 .ico 文件;详细信息创建 Windows XP 图标
You need an .ico file; more info Creating Windows XP Icons
您可以使用资源调谐器来显示任何.exe文件中的资源
You can use Resource Tuner to display the resources in any .exe file