赞
踩
像素图图形项。
QGraphicsPixmapItem::ShapeMode:此枚举描述了图形项如何计算它的形状和不透明区域。
1、QGraphicsPixmapItem(const QPixmap &pixmap, QGraphicsItem *parent = nullptr)
构造函数。
2、void setOffset(qreal x, qreal y)
设置偏移量。绘制像素图的左上角会加上此偏移量。
- QGraphicsPixmapItem *item = new QGraphicsPixmapItem;
- item->setPixmap(QPixmap(":/1.PNG"));
- gphs->addItem(item);
-
- item = new QGraphicsPixmapItem;
- item->setPixmap(QPixmap(":/1.PNG"));
- gphs->addItem(item);
- item->setPos(300,0);
- item->setOffset(50,250);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。