Hi Users,
I need to write a mirrored (reversed) text in a QT application.
I'm triing to install a mirrored font (Windows environment) with this code but without success:

Qt Code:
  1. QFontDatabase fontbase;
  2. fontbase.addApplicationFont("c:\Resources\Backrg__.ttf");
  3. painter.setFont(fontbase.font(QString("backwards"),QString("Regular"),10));
  4. painter.drawText(posx, posy,text);
To copy to clipboard, switch view to plain text mode 

Someone have an idea or is there another approach to obtain a reverse text printing?

Thanks in advance