gpt4 book ai didi

c++ - Qt:使用 QGraphicsscene 显示图像的问题

转载 作者:行者123 更新时间:2023-11-30 02:42:47 31 4
gpt4 key购买 nike

我正在尝试使用 QT 开发非常简单的图像查看器。我正在使用以下代码在 QGraphicsScene 小部件上显示图像:

QImage image(fileName);


firstPicture = new QGraphicsScene();
firstPicture->addPixmap(QPixmap::fromImage(image));


ui->graphicsView->setScene(firstPicture);
ui->graphicsView->fitInView(firstPicture->sceneRect() ,Qt::KeepAspectRatio);

我得到以下输出:output

如何将图像放入 GraphicsScene

最佳答案

此方法仅在 View 显示您的场景时有效。在您的情况下,您没有调用 show()。解决方案:

当场景已经显示时使用您的方法。

您可以重新实现 showEvent 并在此处使用您的方法。

您可以自行缩放图像并将缩放后的图像设置为场景。

您也可以尝试使用:Qt::IgnoreAspectRatio 而不是 Qt::KeepAspectRatio

关于c++ - Qt:使用 QGraphicsscene 显示图像的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26793628/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com