Results 1 to 2 of 2

Thread: QFontMetrics boundingRect vs horizontalAdvance with monospaced fonts

  1. #1
    Join Date
    Jul 2012
    Posts
    244
    Thanks
    27
    Thanked 15 Times in 14 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default QFontMetrics boundingRect vs horizontalAdvance with monospaced fonts

    Hi,

    I am trying to understand the differences between

    fontmetrics.horizontalAdvance(str) and fontmetrics.boundingRect(str).width().

    I understand it's related to kerning, but with my experiments, the bounding rect just doesnt "bound" the string.
    Also, with monospaced fonts kerning should not be a concern, right?

    Consider this code:

    Qt Code:
    1. {
    2. QFont fixedfont = QFontDatabase::systemFont(QFontDatabase::FixedFont);
    3. fixedfont.setPointSize(9);
    4. QFontMetrics fontmetrics = QFontMetrics(fixedfont);
    5. QString str = "abcdefghijk 0123456789";
    6.  
    7. int a = fontmetrics.horizontalAdvance(str);
    8. int b = fontmetrics.boundingRect(str).width();
    9. int c = fontmetrics.averageCharWidth() * str.length();
    10. assert(b == c);
    11.  
    12. QPixmap pixmap(QSize(b, fontmetrics.height()));
    13. pixmap.fill(Qt::white);
    14. QPainter painter(&pixmap);
    15. painter.setFont(fixedfont);
    16. painter.drawText(QPoint(0,fontmetrics.height()), str);
    17. pixmap.save("fontm.bmp", "bmp");
    18.  
    19. }
    To copy to clipboard, switch view to plain text mode 


    Whereas horizontalAdvance gives the correct result:

    gG9br5g.png


    boundingRect.width() truncates the text:

    h03fhfe.png



    I would understand if HA had some extra space at the end. But as is, BR just doesnt bound the text. Why not?

    In other words, I dont understand why with a fixed-width font, averageCharWidth * str.length() doesnt equal the pixels the string occupies when drawn at (0,0).

  2. #2
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Wiki edits
    17

    Default Re: QFontMetrics boundingRect vs horizontalAdvance with monospaced fonts

    QFontMetrics::boundingRect() is returning a rectangle width from the leftmost black pixel to the rightmost black pixel (Assuming a black pen).

    The horizontalAdvance includes the whitespace that precedes/follows the end characters when rendered.
    If you use QPainter::boundingRect() you will get a rectangle that contains the string neatly

    The averageCharWidth() is that of all the glyphs in the font (not just the ones in your string), looks to be the rendered pixels only, and may be subject to rounding.

  3. The following user says thank you to ChrisW67 for this useful post:

    tuli (9th May 2021)

Similar Threads

  1. Replies: 3
    Last Post: 9th June 2022, 17:29
  2. Replies: 1
    Last Post: 22nd April 2014, 16:58
  3. Adding Arabic fonts and CJK (China Japan Korean) fonts
    By kishore7771 in forum Qt Programming
    Replies: 0
    Last Post: 30th July 2013, 19:33
  4. A crash in QFontMetrics::boundingRect()
    By npirocanac in forum Qt for Embedded and Mobile
    Replies: 1
    Last Post: 5th February 2013, 12:47
  5. How to specify QRect argument to QFontMetrics::boundingRect()
    By John Mcgehee in forum Qt Programming
    Replies: 0
    Last Post: 13th October 2010, 05:50

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.