我正在开发向用户显示他选择的一些图片的程序。但是有一个问题,因为我想把这张图片放在QGraphicsView的框架中,而图片确实比框架小。
所以这是我的代码:
image = new QImage(data.absoluteFilePath()); // variable data is defined when calling this method
scn = new QGraphicsScene(this); // object defined in header
ui->graphicsView->setScene(scn);
scn->addPixmap(QPixmap::fromImage(*image));
ui->graphicsView->fitInView(scn->itemsBoundingRect(),Qt::KeepAspectRatio);
我尝试了很多我在网上找到的解决方案,但没有人不帮助我。当框架为 200 x 400 像素时,图片的大小约为 40 x 60 像素。有什么问题?
下面是一些使用上面的代码生成的示例以及我想要得到的示例: