Open bigwatercar opened 11 months ago
When I add QPainter code to draw some text for testing, I got an unexpected result, as following image.
the testing code I added is:
{ QPainter p(this); p.setPen(Qt::yellow); QFont font; font.setFamily("Arial"); font.setPixelSize(32); p.setFont(font); p.drawText(QPoint(400, 50), QLatin1String("ABCDEFG")); }
Why the text drawing by QPainter looks bad?
sorry for my bad english. Thanks for your project.
When I add QPainter code to draw some text for testing, I got an unexpected result, as following image.
the testing code I added is:
Why the text drawing by QPainter looks bad?
sorry for my bad english. Thanks for your project.