Using the Qt framework, how do I measure the width (in pixels) of a piece of text rendered with a given font/style?
You can use QFontMetrics class - see the width() method which can give you the width of a given QString.
QFont myFont(fontName, fontSize);; QString str("I wonder how wide this is?"); QFontMetrics fm(myFont); int width=fm.width(str);
2.1m questions
2.1m answers
60 comments
57.0k users