Hi guys,

I would like to ask about one small thing. Let's say I have a text which has some width/heigh. I draw it using :
Qt Code:
  1. painter->drawText(point,"text");
To copy to clipboard, switch view to plain text mode 

How to draw the same text, in the same point, but 10 times smaller?
painter->scale(...) scales the coordinate system, but I would like to scale only the text.

THanks