使用 QPainter 在 QWidget 上绘制 QPixmap 矩形
我将通过套接字获得序列化的 QPixmap
Rect
。我将反序列化它们并在 QWidget
中绘制矩形现在我的问题是我应该使用哪个 QWidget
来实现此目的?是否有任何再污染我该如何进行?目前我决定使用 QPainter
并使用 drawPixmap
进行绘制,我的方向是否错误?
I'll get serialized QPixmap
Rect
s over the socket. I'll unserialize them and draw the rects in a QWidget
Now my question is which QWidget
should I use for this purpose ? is there any recontamination about how should I proceed ? at the moment I've decided to use a QPainter
and draw using drawPixmap
am I going in a wrong direction ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您可能希望使用在
QGraphicsScene
上绘制的QGraphicsPixmapItem
实例和QGraphicsView
。请参阅 Qt 图形视图框架:
It sounds like you might want use
QGraphicsPixmapItem
instances drawn on aQGraphicsScene
with aQGraphicsView
.See Qt Graphics View Framework: