如何拉伸场景以适合图形视图?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
QGraphicsScene
的 sceneRect在 QGraphicsView::fitInView() 中将执行缩放到-适合你。Using sceneRect of your
QGraphicsScene
in QGraphicsView::fitInView() will do the zoom-to-fit for you.我自己从未使用过它,但在 Qt 文档中,有一个
可以让你在 x 和 y 轴上缩放视图。如果还不够,您可以(如果在您的项目中可能的话)在值太小或太大时手动缩放,当您绘制线条并将相同的因子应用于其他所有内容时。但如果可能的话,我会使用 Qt 中包含的缩放方法。
希望这有帮助。
I never used it myself, but in Qt doc there is a
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.
检查此代码是否有帮助。它正好适合 GraphicsView 上的图像
check whether this code helps. It just fits the image on GraphicsView