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().
|
feedback
|
|
Probably class QFontMetrics will do the job. Just create your desired QFont, set It's point size. Then create QFontMetrics object on your QFont. | |||||
feedback
|
render()call work for you? – Kaleb Pederson Sep 13 '10 at 17:31renderproduces correct results for everything except text. My fonts are specified in points, and the defaultrender(), when I pass it aQPaintercreated from myQPrinter, makes the font huge. Here's my original question: stackoverflow.com/questions/3679837/… – David Burson Sep 13 '10 at 17:57