本文整理汇总了Python中PyQt4.Qt.QColor.blueF方法的典型用法代码示例。如果您正苦于以下问题:Python QColor.blueF方法的具体用法?Python QColor.blueF怎么用?Python QColor.blueF使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt4.Qt.QColor
的用法示例。
在下文中一共展示了QColor.blueF方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: magnify_icons
# 需要导入模块: from PyQt4.Qt import QColor [as 别名]
# 或者: from PyQt4.Qt.QColor import blueF [as 别名]
def magnify_icons(a, b):
a = a.pixmap(16,16)
b = b.pixmap(16,16)
img = [QPixmap(16,16), QPixmap(16,16)]
for i in img:
i.fill(QColor(0, 0, 0, 0))
g = a.toImage()
for n in range(256):
x, y = n%16, n//16
c = QColor(g.pixel(x, y))
s = (c.redF() + c.greenF() + c.blueF()) / 3.0
l = s * 4.2
if l > 1.0: l = 1.0
c.setRgbF(s, s, s, l)
g.setPixel(x, y, c.rgba())
p = QPainter()
p.begin(i)
p.drawImage( QRectF(6, 0, 8, 16), g, QRectF(0, 0, 10, 16))
p.drawPixmap(QRectF(0, 0, 10, 16), b, QRectF(6, 1, 10, 15))
p.end()
a, b = b, a
return tuple(map(QIcon, img))