pyqt4按钮图像没有出现在.app中

发布于 2024-11-07 18:51:00 字数 125 浏览 4 评论 0原文

我使用 py2app 创建一个 .app,GUI 是用 pyqt4 制作的,其中一个按钮在 ti 上有一个图像,但是当我运行该应用程序时,图像没有出现,而当我在终端上运行它时,它出现了,如何才能我解决这个问题?

先感谢您

I create an .app using py2app, and the GUI was made with pyqt4, and one of the buttons has an image on ti, but when i run the app the image doesnt appear and when i run it on the terminal it appears, how can I solve this?

Thank you in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

那一片橙海, 2024-11-14 18:51:00

当您启动 python setup.py py2app 时,您可以传递两个额外的参数:

--iconfile path/to/icon.icns 
--resources path/to/other/required/stuff

第一个参数用于设置 Dock 和应用程序图标,第二个参数用于将其他所需资源嵌入到 .app 文件夹中,以便在应用程序启动时它们可用已开始。

when you launch python setup.py py2app you can pass two extra arguments:

--iconfile path/to/icon.icns 
--resources path/to/other/required/stuff

With the first one you set the Dock and App icon, with the second one you embed other needed resources into the .app folder, so that they are available when the app is started.

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