我想获得Text
元素的真实宽度和高度。如果我使用paintedWidth
&paintedHeight
属性,我不明白。例如:
Rectangle {
color: "green"
width: a_text.paintedWidth
height: a_text.paintedHeight
Text {
id: a_text
text: "r"
color: "white"
anchors.centerIn: parent
}
}
如果我运行该代码,我会"r"
在. 所以我没有得到真正的宽度和高度。我的意思是,白色像素的宽度和高度。"r"
"r"
Text
有什么办法吗?
PS 另外,我还需要文本真正的左上角的相对位置,我的意思是,左上角白色像素相对于“官方”左上角像素的 x & y Text
。