方法1、从硬盘上加载图片
void MainWindow::on_pushButton_clicked()
{
QPixmap pic;
QString strPath = QDir::currentPath() + "/girl.jpg";
if (pic.load(strPath))
{
ui->label->setPixmap(pic);
}
}
方法2、设计器上从资源文件里关联图片
勾选scaledContents图片则会平铺图片