要使用QMovie在QLabel当中放置一个gif的像素动画,但是默认抗锯齿是开的,所以尺寸放大后会看着很难受,怎么关闭这个抗锯齿?
ui.label_4->setFixedSize(45, 45);ui.label_4->setScaledContents(true);QPixmap topMsgIcon(GetListWidgetImagePath() + "setUpList/topMessage.png");ui.label_4->setPixmap(topMsgIcon);