QPixmap上绘制的奇怪像素

时间:2017-05-05 06:56:07

标签: python qt pyqt

我注意到当我在QLabel中使用QPixmap时,看似随机的像素(可能基于内存)被写入QPixmap。这是为什么,以及如何解决这个问题?这只是我的电脑的问题吗? (顺便说一句,我使用的是Windows 7。)

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.google.firebase:firebase-ads:10.2.0'
}

apply plugin: 'com.google.gms.google-services'**

1 个答案:

答案 0 :(得分:1)

The documentation说:

  

警告:这将创建一个包含未初始化数据的QPixmap。调用fill()以使用适当的颜色填充像素图,然后使用QPainter进行绘制。

这意味着它可能包含垃圾。如果你想让它全黑,请用黑色填充。