PDA

View Full Version : contoured text



anoar
3rd September 2009, 22:46
Is there any way to draw contoured text using qpainter (or something else) in qgraphicsview scene that would be rendered well independly of transformation matrix?

wysota
3rd September 2009, 23:08
Sure. Add text to a QPainterPath and draw that. Or maybe it's even possible to use QGraphicsTextItem and set the pen and brush independently.

anoar
3rd September 2009, 23:20
thank you very much, I will try that