本文整理汇总了Python中PyQt4.QtGui.QGraphicsPixmapItem.setMatrix方法的典型用法代码示例。如果您正苦于以下问题:Python QGraphicsPixmapItem.setMatrix方法的具体用法?Python QGraphicsPixmapItem.setMatrix怎么用?Python QGraphicsPixmapItem.setMatrix使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt4.QtGui.QGraphicsPixmapItem
的用法示例。
在下文中一共展示了QGraphicsPixmapItem.setMatrix方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: createPixmapItem
# 需要导入模块: from PyQt4.QtGui import QGraphicsPixmapItem [as 别名]
# 或者: from PyQt4.QtGui.QGraphicsPixmapItem import setMatrix [as 别名]
def createPixmapItem(self, pixmap, position, matrix=QMatrix()):
item = QGraphicsPixmapItem(pixmap)
item.setFlags(QGraphicsItem.ItemIsSelectable|
QGraphicsItem.ItemIsMovable)
item.setPos(position)
item.setMatrix(matrix)
self.scene.clearSelection()
self.scene.addItem(item)
item.setSelected(True)
示例2: __mouseReleaseEvent
# 需要导入模块: from PyQt4.QtGui import QGraphicsPixmapItem [as 别名]
# 或者: from PyQt4.QtGui.QGraphicsPixmapItem import setMatrix [as 别名]
def __mouseReleaseEvent(self,event):
global PIX
self.drag_stop = event.pos()
im = PIX.pixmap().toImage()
start, stop = self.mapToScene(self.drag_start),self.mapToScene(self.drag_stop)
logging.debug((start,stop))
augmented = QGraphicsPixmapItem(QPixmap(tempfile))
augmented.setOffset(rect.topLeft())
augmented.setMatrix(QMatrix())
if None != self.selectbox: self.scene().removeItem(self.selectbox)
self.selectbox = augmented
self.scene().addItem(self.selectbox)
示例3: createPixmapItem
# 需要导入模块: from PyQt4.QtGui import QGraphicsPixmapItem [as 别名]
# 或者: from PyQt4.QtGui.QGraphicsPixmapItem import setMatrix [as 别名]
def createPixmapItem(self, pixmap, matrix=QMatrix()):
global PIX
item = QGraphicsPixmapItem(pixmap)
PIX = item
# item.setFlags(QGraphicsItem.ItemIsSelectable|
# QGraphicsItem.ItemIsMovable)
item.setMatrix(matrix)
self.scene.clearSelection()
for i in self.scene.items():
self.scene.removeItem(i)
self.scene.addItem(item)
self.view.fitInView(item,Qt.KeepAspectRatio)
global DIRTY
DIRTY = True