Reputation: 3197
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()
.
Upvotes: 7
Views: 14879
Reputation: 13130
Probably class QFontMetrics will do the job. Just create your desired QFont, set It's point size. Then create QFontMetrics object on your QFont.
Upvotes: 10