Qt 6.2 版本在 deploy 打包无法显示 SVG 图标
Closed this issue · 1 comments
vooidzero commented
之前把 Qt 升到了 6.2 版本,deploy 打包时发现 SVG 图标显示不出来(在 Qt Creator 中启动应用是没问题的),一番探索后发现是 iconengines/qsvgicon.dll
没被加载。我不知道 Qt 6.2 版本对此有什么改动或者说我的 build 配置出了什么问题,不知道 PATH 为 Qt 安装目录时是怎么确定加载 iconengines
的。试过配置文件 qt.conf
和 QCoreApplication::addLibraryPath
,没用。
试出的解决方法是,创建一个名为 plugins
的文件夹将 iconengines
放入其中。为了整洁把 platforms
, styles
和 tls
也放了进去。新的打包文件结构如下:
B23Downloader.exe
plugins:
iconengines: [qsvgicon.dll]
platforms: [qwindows.dll]
styles: [qwindowsvistastyle.dll]
tls: [qcertonlybackend.dll, qopensslbackend.dll, qschannelbackend.dll]
libgcc_s_seh-1.dll
...
Qt6Core.dll
...