You can set the Antialisasing attribute in the label font in PreferAntialias. You can do this in QtCreator or using code as follows:
QFont f("Times", 50); f.setStyleStrategy(QFont::PreferAntialias); ui->label->setFont(f);
Hope this helps
Yassine zaroui
source share