Qt-以像素为单位计算字符串大小

环境:

Qt5.8、win7

一、背景

项目中需要根据字符串长宽调整空间边框大小。

二、解决办法

使用QFontMetrics。QFontMetrics函数计算给定字体的字符和字符串大小。string函数包括width()、boundingRect()、size()和size(),它们以像素为单位返回字符串的宽度(对于打印机来说是点)。

三、示例代码

#include "widget.h"
#include 
#include "qdebug.h"
 
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QString test("abbbbbbbbbbbbbbbbbbofo\ncc");
 
    QFont font(test, 19);
    QFontMetrics fontMetrics(font);
    int boundWidth = fontMetrics.boundingRect(test).width();
    int boundHeight = fontMetrics.boundingRect(test).height();
 
    qDebug() << "boundWidth =" << boundWidth << " width =" << fontMetrics.width(test);
    qDebug() << "boundHeight =" << boundHeight << " height =" << fontMetrics.height();
 
    return a.exec();
}

打印结果:

boundWidth = 310  width = 312
boundHeight = 25  height = 25

你可能感兴趣的:(Qt-以像素为单位计算字符串大小)