如下所示,在iOS和android中,QML字体渲染似乎有所不同
这是在Android中正确呈现的
请检查ios中的差异。这里显示不正确。
我需要在iOS中做任何不同的操作才能正确显示吗?还是这与语言支持无关?
下面是使用的代码。
FontLoader
{
id: fontArabicSoq
source: "qrc:/fonts/quran_soq.OTF"
}
Text
{
id: dataText
font.pointSize: Qt.platform.os == 'osx' ? 27 : slider1.value
font.family: fontArabicSoq.name //'Al Bayan' --> osx
renderType: Text.NativeRendering
font.styleName: 'Medium'
font.weight: Font.Thin
text: modelData.word
}