QFontMetrics::boundingRect() returns wrong text width
General and Desktop
1
Posts
1
Posters
2.0k
Views
1
Watching
-
wrote on 11 Apr 2013, 06:45 last edited by
I want to get a text width. I need to know this width before rendering of the text.
So I do:
@QFontMetrics m(font);
QRectF b1 = m.boundingRect(QRect(0, 0, 0, 0), Qt::AlignCenter, text);@After that when I render this text I do:
@painter->setFont(font);
QRectF b2 = painter->boundingRect(QRect(0, 0, 0, 0), Qt::AlignCenter, text);@font and text are the same. But I get different width. Why and how can I get the same one?
1/1