如何将文件中的图像插入PlotWidget(plt1 = pg.PlotWidget(w);)?

时间:2013-08-02 15:25:42

标签: python-2.7 pyqtgraph

如何将文件中的图像插入PlotWidget (plt1 = pg.PlotWidget(w);)? 该图像用于布局,其中应显示一些计算和绘制的点。

我试图将图像插入到PlotWidget后面的Qlabel中,并使PlotWidget透明,但不起作用,因为透明度使窗口的颜色不是真正的透明度。

由于

1 个答案:

答案 0 :(得分:0)

使用QGraphicsPixmapItem:

plt1 = pg.PlotWidget(w)
img = pg.QtGui.QGraphicsPixmapItem(pg.QtGui.QPixmap(fileName))
plt1.addItem(img)

# depending on your preference, you probably want to invert the image:
img.scale(1, -1)

# OR invert the entire view:
plt.invertY(True)