how to calculate qfont pixel size from point size

14.6k Views Asked by At

How do I convert my font on a QGraphicsObject from point size to pixel size? I need to do this so the fonts will look right when I print my QGraphicsScene using QGraphicsScene::render().

1

There are 1 best solutions below

2
On BEST ANSWER

Probably class QFontMetrics will do the job. Just create your desired QFont, set It's point size. Then create QFontMetrics object on your QFont.