I'm trying to use a QGraphicsTextItem to rotate a text and write it on a QGraphicsScene. The problem is that if I rotate the text it get's blurred as you can see in this image:

Is it possible to get a better sharpeness on the text? Should I use another font or is the text to small to get sharp?
This is the code I'm using:
text
->setFont
(QFont( "Arial",
3,
QFont::Normal ));
text
->setDefaultTextColor
(QColor(0,
0,
0));
text->rotate(45);
scene->addItem(text);
QGraphicsScene *scene = new QGraphicsScene(widget);
QGraphicsTextItem *text = new QGraphicsTextItem("19.02");
text->setFont(QFont( "Arial", 3, QFont::Normal ));
text->setDefaultTextColor(QColor(0,0,0));
text->rotate(45);
scene->addItem(text);
To copy to clipboard, switch view to plain text mode
Bookmarks