Qml FontLoader 不加载自定义字体
Qml FontLoader not loading the custom font
我正在尝试使用 Google 字体 Inter Regular TTF
(我也测试了一些其他字体文件)但是 FontLoader 没有加载字体,下面是我的代码。
我已将字体文件 .ttf
复制到 .qrc
资源“字体”文件夹中。
我已经定义了一个通用样式文件并加载了在整个应用程序中使用的字体。
// ------- Style.qml --------
pragma Singleton
import QtQuick 2.12
QtObject {
property var myFontInterRegular: FontLoader {
source: "qrc:/fonts/Inter-Regular.ttf"
onStatusChanged: {
console.log("onStatusChanged status:"+status); // Not getting called
}
}
}
没有调用信号 onStatusChanged
,所以我认为我的字体没有加载。
我使用的字体如下:
// ------- TestPage.qml --------
import QtQuick 2.12
import "."
Rectangle {
id: parentRect
width: parent.width
height: parent.height
Text {
id: myTxt
text: "Hello In Inter-Regular"
font.family: Style.myFontInterRegular.name // Getting error "name" not defined
}
}
当我 运行 代码时出现错误:
TypeError: Cannot read property 'name' of undefined
用于行 Style.myFontInterRegular.name
我用过的作品:
// ------assets/Style.qml---------
pragma Singleton
Item {
property alias fontAwesome: fontAwesomeLoader.name
FontLoader {
id: fontAwesomeLoader
source: "qrc:/fonts/fontawesome.ttf"
}
}
// ------- TestPage.qml --------
import QtQuick 2.12
import assets 1.0 // This works using qmldir and assets.qrc
Rectangle {
id: parentRect
width: parent.width
height: parent.height
Text {
id: myTxt
text: "Hello In Inter-Regular"
font.family: Style.fontAwesome
}
}
// ---assets.qrc----
<RCC>
<qresource prefix="/assets">
<file alias="qmldir">assets/qmldir</file>
<file alias="Style.qml">assets/Style.qml</file>
</qresource>
</RCC>
// ---assets/qmldir----
module assets
singleton Style 1.0 Style.qml
我正在尝试使用 Google 字体 Inter Regular TTF
(我也测试了一些其他字体文件)但是 FontLoader 没有加载字体,下面是我的代码。
我已将字体文件 .ttf
复制到 .qrc
资源“字体”文件夹中。
我已经定义了一个通用样式文件并加载了在整个应用程序中使用的字体。
// ------- Style.qml --------
pragma Singleton
import QtQuick 2.12
QtObject {
property var myFontInterRegular: FontLoader {
source: "qrc:/fonts/Inter-Regular.ttf"
onStatusChanged: {
console.log("onStatusChanged status:"+status); // Not getting called
}
}
}
没有调用信号 onStatusChanged
,所以我认为我的字体没有加载。
我使用的字体如下:
// ------- TestPage.qml --------
import QtQuick 2.12
import "."
Rectangle {
id: parentRect
width: parent.width
height: parent.height
Text {
id: myTxt
text: "Hello In Inter-Regular"
font.family: Style.myFontInterRegular.name // Getting error "name" not defined
}
}
当我 运行 代码时出现错误:
TypeError: Cannot read property 'name' of undefined
用于行 Style.myFontInterRegular.name
我用过的作品:
// ------assets/Style.qml---------
pragma Singleton
Item {
property alias fontAwesome: fontAwesomeLoader.name
FontLoader {
id: fontAwesomeLoader
source: "qrc:/fonts/fontawesome.ttf"
}
}
// ------- TestPage.qml --------
import QtQuick 2.12
import assets 1.0 // This works using qmldir and assets.qrc
Rectangle {
id: parentRect
width: parent.width
height: parent.height
Text {
id: myTxt
text: "Hello In Inter-Regular"
font.family: Style.fontAwesome
}
}
// ---assets.qrc----
<RCC>
<qresource prefix="/assets">
<file alias="qmldir">assets/qmldir</file>
<file alias="Style.qml">assets/Style.qml</file>
</qresource>
</RCC>
// ---assets/qmldir----
module assets
singleton Style 1.0 Style.qml