如何拉伸场景以适合图形视图?

发布于 2024-09-27 18:49:42 字数 477 浏览 6 评论 0原文

我使用 Qt 和 C++ 作为我的环境。

我在 UI 中绘制一个 QGraphicsView,然后创建一个场景并向其中添加线条。

我遍历 5000 个点的数组并绘制连接每个点的线。

QGraphicsScene *scene = new QGraphicsScene();
QPen pen2 = QPen(Qt::blue, 8.0);
int j=1;
for (int i=1; i<5000; i++)
{
    scene->addLine(xArray[i],yArray[i],xArray[j],yArray[j], pen2);
    j++;
}

问题是我抓取的数字非常小。例如,2.000e-12。这些数字将根据应用程序不断变化。

如何调整场景以拉伸以填充我的 QGraphicsView

现在,我所看到的只是视野中心的一个点。

I am using Qt and C++ as my environment.

I draw a QGraphicsView in my UI, then create a scene and add lines to that it.

I run through an array of 5000 points and draw lines connecting each point.

QGraphicsScene *scene = new QGraphicsScene();
QPen pen2 = QPen(Qt::blue, 8.0);
int j=1;
for (int i=1; i<5000; i++)
{
    scene->addLine(xArray[i],yArray[i],xArray[j],yArray[j], pen2);
    j++;
}

The problem is that the numbers I am grabbing are very small. e.g., 2.000e-12. The numbers will consistently change based on the application.

How can I adjust my scene to stretch to fill my QGraphicsView.

Now, all I see is a dot in the center of my view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

昨迟人 2024-10-04 18:49:42

使用 QGraphicsScenesceneRectQGraphicsView::fitInView() 中将执行缩放到-适合你。

Using sceneRect of your QGraphicsScene in QGraphicsView::fitInView() will do the zoom-to-fit for you.

世界如花海般美丽 2024-10-04 18:49:42

我自己从未使用过它,但在 Qt 文档中,有一个

void QGraphicsView::scale ( qreal sx, qreal sy )

可以让你在 x 和 y 轴上缩放视图。如果还不够,您可以(如果在您的项目中可能的话)在值太小或太大时手动缩放,当您绘制线条并将相同的因子应用于其他所有内容时。但如果可能的话,我会使用 Qt 中包含的缩放方法。

希望这有帮助。

I never used it myself, but in Qt doc there is a

void QGraphicsView::scale ( qreal sx, qreal sy )

that allows you to scale your view in the x and y axis. If it is not sufficient, you could (if it is possible in your project) zoom manually when the values are too small or too big, when you draw your lines and apply this same factor to everything else. But if it is possible, I would go with the scale method included in Qt.

Hope this helps.

极致的悲 2024-10-04 18:49:42

检查此代码是否有帮助。它正好适合 GraphicsView 上的图像

m_Scene.setSceneRect(m_QImage.rect());

m_Scene.addPixmap(QPixmap::fromImage(m_QImage,0));

m_GraphicsView.setScene(&m_Scene);

m_GraphicsView.fitInView(m_QImage.rect());

check whether this code helps. It just fits the image on GraphicsView

m_Scene.setSceneRect(m_QImage.rect());

m_Scene.addPixmap(QPixmap::fromImage(m_QImage,0));

m_GraphicsView.setScene(&m_Scene);

m_GraphicsView.fitInView(m_QImage.rect());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文