本文整理汇总了Python中PySide.QtGui.QColor.toTuple方法的典型用法代码示例。如果您正苦于以下问题:Python QColor.toTuple方法的具体用法?Python QColor.toTuple怎么用?Python QColor.toTuple使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PySide.QtGui.QColor
的用法示例。
在下文中一共展示了QColor.toTuple方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _set_pixmap_from_roi
# 需要导入模块: from PySide.QtGui import QColor [as 别名]
# 或者: from PySide.QtGui.QColor import toTuple [as 别名]
def _set_pixmap_from_roi(self, roi):
if roi.visible:
color = _display_color(roi.color, self.selected)
else:
color = QColor(Qt.transparent)
self.pixmap = _ndarray_to_arraypixmap(roi.mask[self.slicer.slc.view_slice], color.toTuple())
self.pixmapitem.setPixmap(self.pixmap)
self.pixmapitem.setZValue(_foreground_roi_z if self.selected else _background_roi_z)
示例2: testQColorToTuple
# 需要导入模块: from PySide.QtGui import QColor [as 别名]
# 或者: from PySide.QtGui.QColor import toTuple [as 别名]
def testQColorToTuple(self):
c = QColor(0, 0, 255)
c.setRgb(1, 2, 3)
self.assertEqual((1, 2, 3, 255), c.toTuple())