Using the Qt framework, how do I measure the width (in pixels) of a piece of text rendered with a given font/style?
+8
A:
You can use QFontMetrics class - see the width() method which can give you the width of a given QString.
QFont myFont;
QString str("I wonder how wide this is?");
QFontMetrics fm(myFont);
int width=fm.width(str);
Paul Dixon
2009-08-26 21:20:21