qgraphicsscene 可以转换为像素图吗?
我想将 QGraphicsScene 转换为像素图,这样我就可以将其作为 QGraphicsPixmapItem 添加到列表小部件中。我想知道这可能吗? 换句话说,我想要得到的就像QGraphicsScene
的thumb
。
I want to convert a QGraphicsScene
to a pixmap, so I can add it to a listwidget as a QGraphicsPixmapItem
. I wonder is it possible?
In another word, what I want to get is just like a thumb
of a QGraphicsScene
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,但不是直接的。
您可以使用静态函数
QPixmap::grabWidget()
将QGraphicsView
转换为像素图。创建图形视图,将场景附加到视图,然后转换小部件。Yes, but not directly.
You can convert a
QGraphicsView
into a pixmap, using the static functionQPixmap::grabWidget()
. Create a graphics view, attach your scene to the view, and then convert the widget.