Pyqt显示图片
此处介绍两种方式:设置背景色、和绘图
-
设置背景色,通过啥设置style可直接设置背景为该图片
self.serchButton.setStyleSheet(“border-image: url(./png/btn_search.png);”)
这样子的图片一般会有锯齿,可以在主窗口设置抗锯齿self.setAttribute(QtCore.Qt.WA_TranslucentBackground)
2、使用Qpixmap直接读取或者创建图片
pixmap = QtGui.QPixmap(1120,800)
qp = QtGui.QPainter()
qp.setRenderHint(QtGui.QPainter.Antialiasing)
#开始画
qp.begin(pixmap)
self.label_ReverseImageLoad100.setPixmap(pixmap)
可参考为下面的画图方法
闻道有先后
术业有专攻
From: shaynerain.com
By: Shaynerain