2
をレンダリングイタリック体の垂直位置と角度に関して出力される「参照」ウィンドウとは異なります。テキストは、私は、異なるプラットフォーム間でのテキストのレンダリングに矛盾を見てい異なるaccrossプラットフォーム
Rectangle {
width: 100
height: 50
color: "grey"
Text {
x: 4
y: 2
font.family: sysfont
font.pixelSize: 13
width: contentWidth
color: bgc
text: "Type"
}
Text {
x: 5
y: 13
font.family: sysfont
font.pixelSize: 32
font.italic: true
font.letterSpacing: -1
width: contentWidth
color: topc
style: Text.Sunken
styleColor: bgc
text: "Name"
}
}
何が原因ですか?同じフォント、同じコードです。上のパディングと行の高さの値は、プラットフォーム間で同じです。
私は、macOSとandroid/linuxが一致することを確認できます – qCring