gkv311 / occt-samples-qopenglwidget

Open CASCADE Technology sample - 3D Viewer within Qt Widgets window
Other
55 stars 16 forks source link

Cannot mixed using QPainter #18

Open bigwatercar opened 11 months ago

bigwatercar commented 11 months ago

When I add QPainter code to draw some text for testing, I got an unexpected result, as following image.

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"));
  }

image

Why the text drawing by QPainter looks bad?

sorry for my bad english. Thanks for your project.