2
我想獲得Text
元素的實際寬度&高度。如果我使用paintedWidth
& paintedHeight
屬性,我不明白。例如:我可以獲得Text元素的真實寬度和高度嗎?
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
的實際寬度&高度。我的意思是,白色像素的高度爲&。
任何方式來做到這一點?
P.S.此外,我還需要文本的實際左上角的相對位置,即,相對於Text
的「官方」左上角像素的左上角白色像素的x &。
我很高興你已經解決了你的問題 – BaCaRoZzo