4

在图像上居中文本时,我的策略是获取该文本的边界矩形并将宽度或高度除以二。在这种情况下,我也做了同样的事情。这是我创建的示例:

void CanvasWidget::paintEvent(QPaintEvent*)
{
    //Create image:
    QImage image(rect().width(), rect().height(), QImage::Format_RGB32);
    QPainter paint(&image);
    // White background
    image.fill(QColor("#FFF"));
    // set some metrics, position and the text to draw
    QFontMetrics metrics = paint.fontMetrics();
    int yposition = 100;
    QString text = "Hello world.";
    // Draw gray line to easily see if centering worked
    paint.setPen(QPen(QColor("#666"), 1, Qt::SolidLine, Qt::FlatCap, Qt::RoundJoin));
    paint.drawLine(0, yposition, image.width(), yposition);
    // Get rectangle
    QRect fontRect = metrics.boundingRect(text);
    // Black text
    paint.setPen(QPen(QColor("#000"), 1, Qt::SolidLine, Qt::FlatCap, Qt::RoundJoin));
    // Add half the height to position (note that Qt has [0,0] coordinates at the bottom of the image
    paint.drawText(4, yposition+round(((double)fontRect.height())/2.0), text);


    QPainter p(this);
    p.drawImage(rect(), image, image.rect());
    p.end();
}

这是结果 - 文本位于行下方,而不是居中:

安卓:
图片说明
Windows:
图片说明

我使用线条根据度量矩形在文本周围绘制框架:

图片说明

预期结果是将可见文本准确地围绕给定点/线居中:

图片说明

为了让您正确看待,这是我遇到的实际
图片说明
问题: 数字应该在行的中间,而不是在下面。

我正在使用的函数返回大小,包括重音符号和其他不存在的大字符。如何仅针对存在的字符获取以像素为单位的矩形?

4

1 回答 1

2

不太确定你在问什么,但如果这就是边界矩形出现错误的原因,那是因为你没有考虑字体中带有重音符号的字符,例如 é、å 等。从字体度量返回的边界矩形包括这些。

正如它在boundingRect 文档中所述

边界矩形的高度至少与 height() 返回的值一样大。

我期望,tightBoundingRect的情况并非如此,它会提供正确的结果。

于 2016-01-13T11:00:57.263 回答